/* =================================================================
   CreditSentry — Design System
   Premium navy + gold palette, mobile-first, conversion-optimized.
   ================================================================= */

:root {
	--navy:       #0B1F3F;
	--navy-2:     #112B57;
	--ink:        #0F172A;
	--ink-soft:   #334155;
	--muted:      #6B7280;
	--line:       #E5E7EB;
	--gold:       #C8A24B;
	--gold-2:     #B58F38;
	--gold-soft:  #F5EBD0;
	--cream:      #FAF7F2;
	--paper:      #FFFFFF;
	--success:    #10B981;
	--danger:     #DC2626;
	--shadow-sm:  0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
	--shadow-md:  0 4px 12px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.04);
	--shadow-lg:  0 20px 40px -10px rgba(11,31,63,.20), 0 10px 20px -10px rgba(11,31,63,.12);
	--shadow-gold:0 12px 28px -8px rgba(200,162,75,.45);

	--font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-serif: 'Playfair Display', Georgia, serif;

	--container:  1200px;
	--radius:     14px;
	--radius-lg:  22px;
	--radius-sm:  8px;

	--header-h:   72px;
	--topbar-h:   38px;

	/* Motion — strong custom curves (built-in easings lack punch) */
	--ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
	--ease-in-out: cubic-bezier(0.77, 0, 0.175, 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-sans);
	font-size: 17px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }
h1,h2,h3,h4 { font-family: var(--font-serif); color: var(--navy); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.4rem, 5vw + .5rem, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 2.4vw + .8rem, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 1vw + .8rem, 1.6rem); font-weight: 700; }
p  { margin: 0 0 1em; }
em { font-style: italic; color: var(--gold); font-family: var(--font-serif); }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }
.eyebrow {
	display: inline-block;
	font-family: var(--font-sans);
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: .78rem;
	font-weight: 700;
	color: var(--gold-2);
	margin: 0 0 14px;
}
.eyebrow--light { color: var(--gold); }
.lede { font-size: 1.22rem; line-height: 1.6; color: var(--ink-soft); max-width: 62ch; margin-inline: auto; }
.skip-link {
	position: absolute; left: -9999px;
	background: var(--navy); color: #fff; padding: 12px 16px; z-index: 9999;
}
.skip-link:focus { left: 16px; top: 16px; }
.hl { color: var(--gold); }
.section-head { margin-bottom: 68px; max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .lede { margin-top: 10px; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 8px;
	font: 600 .98rem/1 var(--font-sans);
	padding: 14px 24px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform .15s var(--ease-out), box-shadow .2s var(--ease-out), background .2s ease, color .2s ease, border-color .2s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(.97); }
.btn--sm { padding: 10px 18px; font-size: .88rem; }
.btn--lg { padding: 18px 30px; font-size: 1.04rem; }
.btn--block { display: flex; width: 100%; }

.btn--gold {
	background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
	color: var(--navy);
	box-shadow: 0 4px 14px -6px rgba(200,162,75,.5);
}
.btn--gold:hover { background: var(--gold-2); color: var(--navy); box-shadow: var(--shadow-gold); }

.btn--dark {
	background: var(--navy);
	color: #fff;
}
.btn--dark:hover { background: var(--navy-2); color: #fff; }

.btn--ghost {
	background: transparent;
	color: var(--navy);
	border-color: rgba(11,31,63,.18);
}
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); background: rgba(11,31,63,.04); }

.btn--ghost-dark {
	background: transparent;
	color: var(--navy);
	border-color: var(--navy);
}
.btn--ghost-dark:hover { background: var(--navy); color: #fff; }

.link-arrow { font-weight: 600; color: var(--navy); border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; }
.link-arrow:hover { color: var(--gold-2); }
.link-arrow--light { color: #fff; border-bottom-color: var(--gold); }
.link-arrow--light:hover { color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 80;
	background: rgba(255,255,255,.92);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }
.topbar {
	background: var(--navy);
	color: rgba(255,255,255,.85);
	font-size: .85rem;
}
.topbar__inner { display: flex; align-items: center; gap: 14px; min-height: var(--topbar-h); }
.topbar__link { color: rgba(255,255,255,.95); display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.topbar__link:hover { color: var(--gold); }
.topbar__sep { color: rgba(255,255,255,.35); }
.topbar__loc { color: rgba(255,255,255,.75); }
.topbar__spacer { flex: 1; }
.topbar__cta { color: var(--gold); font-weight: 700; }
.topbar__cta:hover { color: #fff; }

.nav__inner {
	display: flex; align-items: center; gap: 24px;
	min-height: var(--header-h);
}
.brand { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.brand-wordmark { font-family: var(--font-serif); font-weight: 800; font-size: 1.6rem; color: var(--navy); letter-spacing: -0.01em; }
.brand-wordmark .brand-c { color: var(--gold); display: inline-block; transform: translateY(-1px); }
.brand--light .brand-wordmark { color: #fff; }
.custom-logo-link img { max-height: 52px; width: auto; }
@media (max-width: 768px) { .custom-logo-link img { max-height: 44px; } }

/* Gauge logo lockup */
.brand__logo-link { display: inline-flex; align-items: center; line-height: 0; }
.brand__logo { height: 52px; width: auto; display: block; }
.brand--light .brand__logo { height: 48px; }
@media (max-width: 768px) { .brand__logo { height: 44px; } }

.primary-nav { flex: 1; }
.menu {
	list-style: none; padding: 0; margin: 0;
	display: flex; gap: 28px; justify-content: center;
}
.menu a {
	color: var(--ink-soft);
	font-weight: 500;
	font-size: .96rem;
	padding: 6px 0;
	border-bottom: 2px solid transparent;
}
.menu a:hover { color: var(--navy); border-bottom-color: var(--gold); }

.nav__cta { margin-left: auto; }

.nav-toggle {
	display: none;
	background: none; border: 0;
	width: 44px; height: 44px;
	padding: 0; cursor: pointer;
	flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s var(--ease-out), opacity .2s var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
	background: #fff;
	border-top: 1px solid var(--line);
	padding: 20px 24px 28px;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav ul { list-style: none; margin: 0 0 16px; padding: 0; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 14px 0; font-weight: 600; color: var(--navy); }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	padding: 96px 0 84px;
	overflow: hidden;
	color: var(--cream);
	background:
		radial-gradient(1000px 700px at 80% 42%, rgba(200,162,75,.18), transparent 58%),
		radial-gradient(700px 500px at 8% 110%, rgba(17,43,87,.6), transparent 60%),
		linear-gradient(140deg, var(--navy) 0%, #061434 100%);
}
.hero__bg {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(200,162,75,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(200,162,75,.05) 1px, transparent 1px);
	background-size: 38px 38px;
	mask-image: radial-gradient(900px 600px at 75% 45%, #000 20%, transparent 78%);
	-webkit-mask-image: radial-gradient(900px 600px at 75% 45%, #000 20%, transparent 78%);
	pointer-events: none;
}
.hero__inner {
	display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px;
	align-items: center; position: relative;
}
.hero__copy { max-width: 620px; }
.badge-row { margin-bottom: 22px; }
.badge {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 7px 14px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: .82rem;
	font-weight: 600;
	color: var(--ink-soft);
	box-shadow: var(--shadow-sm);
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(16,185,129,.18); }
.hero__headline { margin-bottom: 22px; font-size: clamp(2.7rem, 4.4vw + 1rem, 5rem); line-height: 1.08; letter-spacing: -0.022em; }
.hero__headline em { font-style: italic; }
.hero__sub { font-size: 1.22rem; line-height: 1.6; color: var(--ink-soft); max-width: 560px; margin-bottom: 30px; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__trustline {
	list-style: none; padding: 0; margin: 0;
	display: flex; gap: 22px; flex-wrap: wrap;
	color: var(--ink-soft); font-size: .92rem;
}
.hero__trustline li { display: inline-flex; align-items: center; gap: 6px; }
.hero__trustline svg { color: var(--success); }

/* Hero visual */
.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; }

/* ---------- Dark hero: copy on navy + glowing gauge visual ---------- */
.hero__headline { color: var(--cream); }
.hero__sub { color: rgba(250,247,242,.72); }
.hero .badge { background: rgba(200,162,75,.08); border-color: rgba(200,162,75,.35); color: var(--gold-soft); box-shadow: none; }
.hero__trustline { color: rgba(250,247,242,.72); }
.hero__trustline svg { color: var(--gold); }
.hero .btn--ghost { color: var(--cream); border-color: rgba(250,247,242,.3); }
.hero .btn--ghost:hover { color: var(--cream); border-color: var(--cream); background: rgba(250,247,242,.07); }

.hero__glow {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 540px; height: 540px; border-radius: 50%;
	background: radial-gradient(circle, rgba(200,162,75,.26) 0%, rgba(200,162,75,.09) 35%, transparent 68%);
	filter: blur(8px); z-index: 0; pointer-events: none;
}
.hero__gauge-wrap { position: relative; z-index: 1; width: 100%; max-width: 440px; margin-inline: auto; text-align: center; }
.hero__gauge { width: 100%; height: auto; display: block; }
/* Force lining + tabular figures so digits share one baseline/height (Playfair/Georgia default to old-style numerals, which makes 6/8 ride high and 3/4/7/9 dip) and the count-up doesn't shift width. */
#hero-score { font-variant-numeric: lining-nums tabular-nums; font-feature-settings: "lnum" 1, "tnum" 1; }
.hero__delta {
	display: inline-flex; align-items: center; gap: 8px;
	margin-top: 6px; padding: 7px 16px; border-radius: 999px;
	background: rgba(16,185,129,.16); color: #6EE7B7; border: 1px solid rgba(16,185,129,.3);
	font-weight: 700; font-size: .9rem;
	opacity: 0; transform: translateY(6px);
	transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.hero__delta.is-shown { opacity: 1; transform: none; }
.hero__money-tag {
	display: block; margin: 12px auto 0;
	font-family: 'Playfair Display', Georgia, serif; font-size: 1.18rem; color: var(--gold);
	letter-spacing: -0.01em;
}
.hero__money-tag strong { color: #6EE7B7; font-weight: 800; }
.hero__gauge-cap { margin: 16px auto 0; max-width: 360px; font-size: .72rem; line-height: 1.5; color: rgba(250,247,242,.5); }
@media (max-width: 980px) { .hero__glow { width: 420px; height: 420px; } }

/* How It Works — additions */
.how-step__aside {
	margin: 14px 0 12px;
	padding: 14px 16px;
	background: rgba(200, 162, 75, .08);
	border-left: 3px solid var(--gold);
	border-radius: 0 8px 8px 0;
	font-size: .92rem;
	line-height: 1.5;
	color: var(--ink-soft);
	font-style: italic;
}
.how__disclaimer {
	margin: 48px auto 0;
	max-width: 60ch;
	text-align: center;
	font-size: .82rem;
	line-height: 1.55;
	color: var(--muted);
}
/* ---------- Trust strip ---------- */
.trust-strip {
	background: #fff;
	border-block: 1px solid var(--line);
	padding: 22px 0;
}
.trust-strip__inner {
	display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap;
	justify-content: center;
}
.trust-strip__group {
	display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.trust-strip__label {
	font-size: .8rem; font-weight: 700; color: var(--muted);
	text-transform: uppercase; letter-spacing: .12em;
}
.trust-strip__logos {
	list-style: none; margin: 0; padding: 0;
	display: flex; gap: 32px; flex-wrap: wrap; justify-content: center;
}
.trust-strip__logos strong {
	font-family: var(--font-serif); font-size: 1.15rem;
	color: var(--ink-soft);
	letter-spacing: -0.01em;
}

/* ---------- Services list ---------- */
.services { padding: 100px 0; background: radial-gradient(900px 500px at 100% 0%, rgba(200,162,75,.06), transparent 60%), var(--cream); }
.services__grid {
	list-style: none; margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 12px;
}
.service-card {
	display: flex; align-items: center; gap: 12px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-weight: 600; color: var(--ink);
	transition: transform .2s var(--ease-out), border-color .2s ease, box-shadow .2s var(--ease-out);
}
.service-card:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.service-card svg { color: var(--gold); flex-shrink: 0; }
.services__disclaimer {
	margin-top: 32px; text-align: center;
	font-size: .85rem; color: var(--muted);
}

/* 12-CRA goal-mapping grid (replaces the old item-type cards) */
.goal-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
}
.goal-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow-sm);
	transition: transform .2s var(--ease-out), border-color .2s ease, box-shadow .2s var(--ease-out);
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.goal-card:hover {
	transform: translateY(-3px);
	border-color: var(--gold);
	box-shadow: var(--shadow-md);
}
.goal-card svg {
	color: var(--gold);
}
.goal-card__title {
	font-family: var(--font-serif);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--navy);
	margin: 0;
	line-height: 1.25;
}
.goal-card__context {
	font-size: .95rem;
	line-height: 1.55;
	color: var(--ink-soft);
	margin: 0;
}
.goal-card__cras {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px dashed var(--line);
}
.goal-card__cras-label {
	display: block;
	font-family: var(--font-sans);
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-weight: 700;
	color: var(--gold-2);
	margin-bottom: 6px;
}
.goal-card__cras-list {
	display: block;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: .9rem;
	color: var(--navy);
	line-height: 1.5;
}

/* 12-CRA reference index (editorial rows, replaces the uniform card grid) */
.goal-index { list-style: none; margin: 48px 0 0; padding: 0; border-top: 1px solid var(--line); }
.goal-row {
	display: grid; grid-template-columns: 44px 1fr 1.45fr; gap: 28px; align-items: start;
	padding: 30px 18px; border-bottom: 1px solid var(--line);
	border-radius: 10px;
	transition: background .2s var(--ease-out);
}
.goal-row:hover { background: rgba(200,162,75,.05); }
.goal-row__icon { color: var(--gold); padding-top: 2px; }
.goal-row__title { font-family: var(--font-serif); font-size: 1.32rem; font-weight: 700; color: var(--navy); margin: 0 0 12px; line-height: 1.22; letter-spacing: -0.015em; }
.goal-row__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.goal-chip { font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: #fff; border: 1px solid var(--gold-soft); color: var(--gold-2); white-space: nowrap; }
.goal-row__context { color: var(--ink-soft); font-size: .99rem; line-height: 1.62; margin: 0; }

/* ---------- How it works ---------- */
.how { padding: 110px 0; background: #fff; }
.how__steps {
	list-style: none; padding: 0; margin: 0;
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
	counter-reset: step;
}
.how-step {
	position: relative;
	padding: 36px 28px;
	background: var(--cream);
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
}
.how-step__num {
	display: inline-block;
	font-family: var(--font-serif); font-weight: 800;
	font-size: 2.4rem;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 16px;
}
.how-step h3 { margin-bottom: 10px; }
.how-step p { color: var(--ink-soft); }

/* ---------- About Eli ---------- */
.about-eli { padding: 110px 0; background: var(--cream); }
.about-eli__grid {
	display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
	align-items: center;
}
.about-eli__photo {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	aspect-ratio: 4 / 5;
	background: linear-gradient(135deg, var(--navy), var(--navy-2));
}
.about-eli__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-eli__photo-tag {
	position: absolute; left: 20px; bottom: 20px;
	background: rgba(255,255,255,.95);
	backdrop-filter: blur(6px);
	padding: 12px 18px;
	border-radius: var(--radius);
}
.about-eli__photo-tag span { font-family: var(--font-serif); font-weight: 700; color: var(--navy); display: block; }
.about-eli__photo-tag small { font-size: .8rem; color: var(--muted); }
.about-eli blockquote {
	margin: 28px 0;
	padding: 24px 28px;
	background: #fff;
	border-left: 4px solid var(--gold);
	border-radius: var(--radius-sm);
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.2rem;
	color: var(--navy);
}
.about-eli blockquote cite {
	display: block; margin-top: 12px;
	font-style: normal;
	font-family: var(--font-sans);
	font-size: .9rem;
	color: var(--muted);
}

/* ---------- Guarantee ---------- */
.guarantee {
	padding: 90px 0;
	background: linear-gradient(135deg, var(--navy) 0%, #061434 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.guarantee::before {
	content: ""; position: absolute; inset: 0;
	background-image: radial-gradient(circle at 20% 30%, rgba(200,162,75,.18), transparent 50%);
	pointer-events: none;
}
.guarantee__inner {
	display: grid; grid-template-columns: auto 1fr; gap: 48px;
	align-items: center; position: relative;
}
.guarantee__seal { color: var(--gold); flex-shrink: 0; }
.guarantee__copy h2 { color: #fff; }
.guarantee__copy .eyebrow { color: var(--gold); }
.guarantee__copy p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 56ch; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 110px 0; background: var(--cream); }
.t-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.t-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow-md);
	display: flex; flex-direction: column; gap: 18px;
	border: 1px solid var(--line);
	transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.t-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.t-card__head {
	display: grid; grid-template-columns: 44px 1fr auto;
	gap: 12px; align-items: center;
}
.t-card__avatar {
	width: 44px; height: 44px; border-radius: 50%;
	background: linear-gradient(135deg, var(--navy), var(--gold));
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; font-family: var(--font-serif);
}
.t-card__head strong { display: block; color: var(--navy); font-size: 1rem; }
.t-card__head span { font-size: .82rem; color: var(--muted); }
.t-card__verified {
	width: 26px; height: 26px; border-radius: 50%;
	background: var(--success); color: #fff;
	display: flex; align-items: center; justify-content: center;
}
.t-card__quote {
	margin: 0;
	font-style: italic;
	color: var(--ink-soft);
	font-size: 1.02rem;
	line-height: 1.55;
}
.t-card__scores {
	display: grid; grid-template-columns: 1fr auto 1fr auto; gap: 10px;
	align-items: center;
	padding-top: 18px;
	border-top: 1px solid var(--line);
}
.t-card__scores .t-card__label {
	display: block;
	font-size: .68rem; color: var(--muted);
	text-transform: uppercase; letter-spacing: .08em;
	font-weight: 700;
}
.t-card__num { font-family: var(--font-serif); font-weight: 800; font-size: 1.5rem; line-height: 1; }
.t-card__num--low { color: var(--danger); }
.t-card__num--high { color: var(--success); }
.t-card__arrow { color: var(--muted); font-size: 1.1rem; }
.t-card__delta { text-align: right; }
.t-card__delta strong {
	font-family: var(--font-serif); font-weight: 800;
	font-size: 1.5rem; color: var(--gold-2);
	display: block; line-height: 1;
}
.t-card__delta span { font-size: .72rem; color: var(--muted); }
.testimonials__cta { text-align: center; margin-top: 48px; }

/* ---------- Stats (dark band — breaks the long light run, lets numbers pop) ---------- */
.stats {
	padding: 96px 0;
	background:
		radial-gradient(700px 360px at 50% 0%, rgba(200,162,75,.16), transparent 70%),
		linear-gradient(135deg, var(--navy) 0%, #061434 100%);
	color: #fff;
}
.stats .eyebrow { color: var(--gold); }
.stats h2 { color: #fff; }
.stats .lede, .stats p { color: rgba(255,255,255,.82); }
.stats__grid {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.stat {
	text-align: center;
	padding: 28px 16px;
	background: rgba(255,255,255,.05);
	border-radius: var(--radius);
	border: 1px solid rgba(255,255,255,.10);
}
.stat__num {
	display: block;
	font-family: var(--font-serif); font-weight: 800;
	font-size: clamp(1.5rem, 1.8vw + .8rem, 2.4rem);
	color: var(--gold);
	line-height: 1; margin-bottom: 8px;
	letter-spacing: -0.02em;
}
.stat__label { font-size: .85rem; color: rgba(255,255,255,.75); font-weight: 500; }

/* ---------- Programs ---------- */
.programs { padding: 110px 0; background: radial-gradient(820px 520px at 0% 100%, rgba(11,31,63,.045), transparent 62%), var(--cream); }
.programs__grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
	align-items: stretch;
}
.program {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 36px 30px;
	border: 1px solid var(--line);
	display: flex; flex-direction: column;
	box-shadow: var(--shadow-sm);
	position: relative;
	transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.program:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.program--featured {
	border-color: var(--gold);
	background: linear-gradient(180deg, #FFFDF8 0%, #fff 100%);
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}
.program--featured:hover { transform: translateY(-12px); }
.program__badge {
	position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
	background: var(--gold);
	color: #fff;
	font-size: .75rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: .1em;
	padding: 6px 14px;
	border-radius: 999px;
}
.program h3 { margin-bottom: 10px; }
.program > header > p { color: var(--ink-soft); margin-bottom: 22px; }
.program__list { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.program__list li {
	padding: 10px 0 10px 28px;
	position: relative;
	color: var(--ink-soft);
	border-bottom: 1px solid var(--line);
	font-size: .96rem;
}
.program__list li:last-child { border-bottom: 0; }
.program__list li::before {
	content: "";
	position: absolute; left: 0; top: 14px;
	width: 18px; height: 18px;
	background: var(--gold-soft);
	border-radius: 50%;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B58F38' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
	background-size: 12px; background-position: center; background-repeat: no-repeat;
}

/* ---------- Pillars ---------- */
.pillars { padding: 110px 0; background: #fff; }
.pillars__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.pillar {
	padding: 32px 24px;
	background: var(--cream);
	border-radius: var(--radius);
	border: 1px solid var(--line);
}
.pillar__icon {
	width: 48px; height: 48px;
	border-radius: 12px;
	background: var(--navy);
	color: var(--gold);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 18px;
}
.pillar h3 { font-size: 1.2rem; margin-bottom: 10px; }
.pillar p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* Pillars manifesto (numbered editorial list, replaces the icon-card grid) */
.manifesto { list-style: none; margin: 56px auto 0; padding: 0; max-width: 860px; }
.manifesto__item { display: grid; grid-template-columns: 96px 1fr; gap: 30px; align-items: baseline; padding: 34px 0; border-top: 1px solid var(--line); }
.manifesto__item:last-child { border-bottom: 1px solid var(--line); }
.manifesto__num { font-family: var(--font-serif); font-weight: 800; font-size: 3.4rem; color: var(--gold); line-height: .85; letter-spacing: -0.02em; }
.manifesto__title { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 700; color: var(--navy); margin: 0 0 12px; line-height: 1.2; letter-spacing: -0.015em; }
.manifesto__body { color: var(--ink-soft); margin: 0; font-size: 1.03rem; line-height: 1.66; max-width: 62ch; }
@media (max-width: 720px) {
	.goal-row { grid-template-columns: 1fr; gap: 14px; padding: 24px 8px; }
	.goal-row__icon { display: none; }
	.manifesto__item { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
	.manifesto__num { font-size: 2.4rem; }
}

/* ---------- Movement ---------- */
.movement {
	padding: 100px 0;
	background:
		radial-gradient(800px 400px at 50% 0%, rgba(200,162,75,.18), transparent 70%),
		linear-gradient(135deg, var(--navy) 0%, #061434 100%);
	color: #fff;
	text-align: center;
}
.movement__inner { max-width: 760px; margin: 0 auto; }
.movement h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.movement p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 28px; }

/* ---------- FAQ ---------- */
.faq { padding: 110px 0; background: var(--cream); }
.faq__inner { max-width: 820px; margin: 0 auto; }
.faq .section-head { text-align: left; margin-inline: 0; max-width: none; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px;
	padding: 22px 26px;
	cursor: pointer;
	font-weight: 600;
	color: var(--navy);
	font-size: 1.05rem;
	list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon {
	width: 28px; height: 28px;
	border-radius: 50%;
	background: var(--cream);
	display: flex; align-items: center; justify-content: center;
	font-weight: 600; font-size: 1.2rem;
	color: var(--gold-2);
	transition: transform .2s var(--ease-out), background .2s ease;
	flex-shrink: 0;
}
.faq-item[open] .faq-item__icon { transform: rotate(45deg); background: var(--gold); color: #fff; }
.faq-item__a { padding: 0 26px 22px; color: var(--ink-soft); }
.faq-item__a p { margin: 0; }

/* ---------- Insights / Blog ---------- */
.insights { padding: 110px 0; background: #fff; }
.insights__grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.insight-card {
	background: var(--cream);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	display: flex; flex-direction: column;
	transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.insight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.insight-card__thumb {
	aspect-ratio: 16 / 9;
	background:
		linear-gradient(135deg, var(--navy) 0%, var(--gold-2) 100%);
	position: relative;
}
.insight-card__thumb::after {
	content: "";
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
	background-size: 24px 24px;
}
.insight-card__body { padding: 24px 26px 28px; }
.insight-card__meta { color: var(--muted); font-size: .8rem; display: block; margin-bottom: 10px; }
.insight-card h3 { font-size: 1.2rem; }
.insight-card p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Social CTA ---------- */
.social-cta {
	padding: 60px 0;
	background: var(--cream);
	border-top: 1px solid var(--line);
}
.social-cta__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 28px; flex-wrap: wrap;
}
.social-cta h2 { margin: 0; font-size: 1.6rem; max-width: 28ch; }
.social-cta__links { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Final CTA ---------- */
.final-cta {
	padding: 110px 0;
	background:
		radial-gradient(800px 400px at 50% 100%, rgba(200,162,75,.20), transparent 70%),
		linear-gradient(160deg, var(--navy) 0%, #061434 100%);
	color: #fff;
	text-align: center;
}
.final-cta__inner { max-width: 720px; margin: 0 auto; }
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,.88); font-size: 1.15rem; margin-bottom: 32px; }
.final-cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.final-cta__buttons .btn--ghost { border-color: rgba(255,255,255,.3); color: #fff; }
.final-cta__buttons .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.final-cta__seal { color: var(--gold); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
	background: #050E22;
	color: rgba(255,255,255,.7);
	padding: 70px 0 0;
}
.site-footer__grid {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
	padding-bottom: 60px;
}
.site-footer h4 {
	color: #fff;
	font-family: var(--font-sans);
	font-size: .9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--gold); }
.footer-tag { color: var(--gold); font-style: italic; margin: 8px 0 20px; }
.nap { font-style: normal; line-height: 1.7; font-size: .95rem; }
.nap a { display: inline-block; }
.social-list a { font-weight: 600; }
.site-footer__legal {
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 22px 0 96px;
}
.site-footer__legal-inner {
	display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
	font-size: .8rem;
}
.site-footer__legal a { color: rgba(255,255,255,.7); }
.site-footer__legal .disclaimer { color: rgba(255,255,255,.45); flex-basis: 100%; max-width: 80ch; }

/* ---------- Sticky CTA bar (mobile + tablet) ---------- */
.sticky-cta {
	position: fixed; left: 0; right: 0; bottom: 0;
	background: #fff;
	border-top: 1px solid var(--line);
	box-shadow: 0 -10px 30px -10px rgba(11,31,63,.18);
	padding: 12px 16px;
	display: none;
	gap: 10px;
	z-index: 70;
	padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
.sticky-cta.is-visible { display: flex; }
.sticky-cta__call {
	display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	padding: 14px 16px;
	border: 1.5px solid var(--navy);
	border-radius: 999px;
	font-weight: 700;
	color: var(--navy);
	flex-shrink: 0;
}
.sticky-cta__book { flex: 1; }

/* ---------- Exit-intent modal ---------- */
.exit-modal {
	position: fixed; inset: 0;
	z-index: 90;
	display: flex; align-items: center; justify-content: center;
	padding: 20px;
	opacity: 0; pointer-events: none;
	transition: opacity .25s var(--ease-out);
}
.exit-modal[hidden] { display: none; }
.exit-modal.is-visible { opacity: 1; pointer-events: auto; }
.exit-modal__backdrop {
	position: absolute; inset: 0;
	background: rgba(5,14,34,.6);
	backdrop-filter: blur(4px);
}
.exit-modal__panel {
	position: relative;
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 40px 36px;
	max-width: 480px;
	width: 100%;
	text-align: center;
	transform: scale(.96) translateY(8px);
	transition: transform .25s var(--ease-out);
}
.exit-modal.is-visible .exit-modal__panel { transform: scale(1) translateY(0); }
.exit-modal__close {
	position: absolute; top: 10px; right: 14px;
	width: 36px; height: 36px;
	background: transparent;
	border: 0;
	font-size: 1.8rem;
	color: var(--muted);
	cursor: pointer;
	line-height: 1;
}
.exit-modal__close:hover { color: var(--navy); }
.exit-modal h2 { font-size: 1.8rem; margin-bottom: 12px; }
.exit-modal p { color: var(--ink-soft); margin-bottom: 24px; }
.exit-modal__trust { display: block; margin-top: 12px; color: var(--muted); font-size: .8rem; }

/* ---------- Scroll reveal ---------- */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.reveal.is-in {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- Staggered grid reveals ---------- */
.goal-index > *,
.manifesto > *,
.programs__grid > *,
.how__steps > *,
.t-grid > *,
.insights__grid > * {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.is-staggered > * { opacity: 1; transform: none; }
.is-staggered > *:nth-child(1) { transition-delay: .04s; }
.is-staggered > *:nth-child(2) { transition-delay: .10s; }
.is-staggered > *:nth-child(3) { transition-delay: .16s; }
.is-staggered > *:nth-child(4) { transition-delay: .22s; }
.is-staggered > *:nth-child(5) { transition-delay: .28s; }
.is-staggered > *:nth-child(6) { transition-delay: .34s; }
.is-staggered > *:nth-child(n+7) { transition-delay: .40s; }

/* ---------- Atmosphere: gold accent rule above centered section eyebrows ---------- */
.section-head--center .eyebrow::before {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	background: var(--gold);
	border-radius: 2px;
	margin: 0 auto 16px;
}

/* ---------- Page / single fallbacks ---------- */
.page-wrap { padding: 80px 0; }
.entry-title { margin-bottom: 24px; }
.entry-content { max-width: 720px; }
.entry-content > * { margin-bottom: 1.2em; }

/* =================================================================
   BLOG — index + single + Gutenberg block styles
   ================================================================= */

/* ---------- Blog index ---------- */
.blog-hero {
	padding: 80px 0 40px;
	background: var(--cream);
	text-align: center;
}
.blog-hero h1 { font-size: clamp(2rem, 3vw + .8rem, 3.2rem); max-width: 18ch; margin: 0 auto 16px; }
.blog-hero .lede { max-width: 56ch; margin-inline: auto; }

.blog-archive { padding: 60px 0 100px; background: var(--paper); }

.blog-feature {
	margin-bottom: 60px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--cream);
	border: 1px solid var(--line);
	transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.blog-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-feature__link { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; color: inherit; }
.blog-feature__link:hover { color: inherit; }
.blog-feature__thumb {
	min-height: 360px;
	background-size: cover;
	background-position: center;
	background-color: var(--navy);
}
.blog-feature__thumb--placeholder {
	background: linear-gradient(135deg, var(--navy), var(--gold-2));
	background-image:
		linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
	background-size: 32px 32px, 32px 32px;
}
.blog-feature__body { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.blog-feature__eyebrow { color: var(--gold-2); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 14px; }
.blog-feature__title { font-size: clamp(1.6rem, 2vw + .5rem, 2.2rem); margin: 0 0 14px; }
.blog-feature__excerpt { color: var(--ink-soft); margin: 0 0 20px; font-size: 1.05rem; }

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-bottom: 60px;
}
.blog-card {
	background: var(--cream);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card__link { color: inherit; display: flex; flex-direction: column; height: 100%; }
.blog-card__link:hover { color: inherit; }
.blog-card__thumb {
	aspect-ratio: 16 / 10;
	background-size: cover;
	background-position: center;
	background-color: var(--navy);
}
.blog-card__thumb--placeholder {
	background: linear-gradient(135deg, var(--navy), var(--gold-2));
	background-image:
		linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
	background-size: 24px 24px, 24px 24px;
}
.blog-card__body { padding: 22px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { color: var(--muted); font-size: .8rem; display: block; margin-bottom: 10px; }
.blog-card__title { font-size: 1.2rem; margin-bottom: 10px; }
.blog-card__excerpt { color: var(--ink-soft); font-size: .96rem; margin: 0; }

.blog-pagination .nav-links { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.blog-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px;
	border-radius: 999px;
	background: var(--cream);
	color: var(--ink-soft);
	font-weight: 600;
	padding: 0 14px;
	border: 1px solid var(--line);
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
	background: var(--navy);
	color: #fff;
	border-color: var(--navy);
}
.blog-empty { text-align: center; padding: 60px 0; }

/* ---------- Single article ---------- */
.article-page { padding-bottom: 80px; }
.article-hero {
	padding: 60px 0 36px;
	background: var(--cream);
}
.article-crumbs {
	font-size: .85rem;
	color: var(--muted);
	margin-bottom: 18px;
	display: flex; gap: 8px; align-items: center;
}
.article-crumbs a { color: var(--ink-soft); }
.article-crumbs a:hover { color: var(--gold-2); }
.article-eyebrow {
	color: var(--gold-2);
	font-size: .82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .14em;
	margin: 0 0 16px;
}
.article-title {
	font-size: clamp(2rem, 3vw + .8rem, 3.2rem);
	line-height: 1.15;
	margin: 0 0 28px;
	color: var(--navy);
}
.article-meta { display: flex; gap: 18px; align-items: center; }
.article-meta__author { display: flex; gap: 12px; align-items: center; }
.article-meta__avatar {
	width: 44px; height: 44px; border-radius: 50%;
	background: linear-gradient(135deg, var(--navy), var(--gold));
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; font-family: var(--font-serif);
}
.article-meta strong { display: block; color: var(--navy); font-size: .98rem; }
.article-meta span { font-size: .85rem; color: var(--muted); }

.article-thumb {
	max-width: 1100px;
	margin: 0 auto 50px;
	padding: 0 24px;
}
.article-thumb img {
	width: 100%; height: auto;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

.article-body {
	font-size: 1.12rem;
	line-height: 1.78;
	color: var(--ink);
}
.article-body > * + * { margin-top: 1.4em; }
.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote,
.article-body figure { margin-left: 0; margin-right: 0; }
.article-body h2 {
	margin-top: 2.2em;
	font-size: clamp(1.6rem, 1.4vw + .8rem, 2.1rem);
	scroll-margin-top: 100px;
}
.article-body h3 {
	margin-top: 1.8em;
	font-size: 1.4rem;
	scroll-margin-top: 100px;
}
.article-body a {
	color: var(--navy);
	text-decoration: underline;
	text-decoration-color: var(--gold);
	text-underline-offset: 3px;
	text-decoration-thickness: 2px;
}
.article-body a:hover { color: var(--gold-2); }
.article-body img,
.article-body .wp-block-image { border-radius: var(--radius); }
.article-body ul li,
.article-body ol li { margin-bottom: .5em; }
.article-body code {
	background: var(--cream);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: .92em;
	color: var(--navy);
}
.article-body hr {
	border: 0;
	border-top: 1px solid var(--line);
	margin: 3em auto;
	max-width: 200px;
}

.article-foot { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--line); }
.article-share {
	display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
	margin-bottom: 50px;
	font-size: .9rem;
}
.article-share span { color: var(--muted); font-weight: 600; }
.article-share a {
	color: var(--ink-soft);
	font-weight: 600;
	border-bottom: 1.5px solid var(--gold);
	padding-bottom: 2px;
}
.article-share a:hover { color: var(--gold-2); }

.article-author-bio {
	background: var(--cream);
	border-radius: var(--radius-lg);
	padding: 32px 36px;
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 28px;
	align-items: start;
	border: 1px solid var(--line);
}
.article-author-bio__photo {
	width: 120px; height: 120px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-color: var(--navy);
}
.article-author-bio__eyebrow {
	margin: 0 0 6px;
	color: var(--gold-2);
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .14em;
}
.article-author-bio h3 { margin: 0 0 12px; }
.article-author-bio p { color: var(--ink-soft); margin: 0 0 20px; }

.article-nav {
	margin-top: 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.article-nav__prev,
.article-nav__next {
	padding: 22px 24px;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--navy);
	display: block;
	transition: border-color .2s ease, transform .2s var(--ease-out);
}
.article-nav__prev:hover,
.article-nav__next:hover { border-color: var(--gold); transform: translateY(-2px); }
.article-nav__next { text-align: right; }
.article-nav small { display: block; color: var(--muted); font-size: .8rem; margin-bottom: 6px; font-weight: 600; }
.article-nav strong { display: block; font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.3; }

/* ---------- Gutenberg block styles ---------- */

/* Eli's Take pull-quote variant */
.wp-block-quote.is-style-credituity-eli {
	background: var(--cream);
	border-left: 4px solid var(--gold);
	border-radius: 0 var(--radius) var(--radius) 0;
	padding: 28px 32px;
	margin: 2.5em 0;
	position: relative;
}
.wp-block-quote.is-style-credituity-eli::before {
	content: "Eli's Take";
	display: block;
	color: var(--gold-2);
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .14em;
	margin-bottom: 10px;
	font-family: var(--font-sans);
	font-style: normal;
}
.wp-block-quote.is-style-credituity-eli p {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.25rem;
	color: var(--navy);
	margin: 0;
}
.wp-block-quote.is-style-credituity-eli cite {
	display: block;
	margin-top: 12px;
	color: var(--muted);
	font-style: normal;
	font-family: var(--font-sans);
	font-size: .9rem;
}

/* Key Takeaways callout */
.wp-block-group.is-style-credituity-takeaways {
	background: var(--cream) !important;
	border-left: 4px solid var(--gold);
}

/* Warning callout */
.wp-block-group.is-style-credituity-warning {
	background: #FEF6E7 !important;
	border-left: 4px solid #F59E0B;
}

/* Pro Tip callout */
.wp-block-group.is-style-credituity-tip {
	background: #ECFDF5 !important;
	border-left: 4px solid var(--success);
}

/* Override default WP buttons to match brand within posts */
.article-body .wp-block-button__link {
	border-radius: 999px;
	font-weight: 600;
	padding: 14px 26px;
}
.article-body .wp-block-buttons.is-style-credituity-cta-row {
	margin: 2em 0;
}

/* =================================================================
   BLOG RESPONSIVE
   ================================================================= */
@media (max-width: 900px) {
	.blog-feature__link { grid-template-columns: 1fr; }
	.blog-feature__thumb { min-height: 240px; }
	.blog-feature__body { padding: 32px 28px; }
	.blog-grid { grid-template-columns: repeat(2, 1fr); }
	.article-author-bio { grid-template-columns: 1fr; text-align: center; }
	.article-author-bio__photo { margin: 0 auto; }
	.article-nav { grid-template-columns: 1fr; }
	.article-nav__next { text-align: left; }
}

@media (max-width: 600px) {
	.blog-grid { grid-template-columns: 1fr; }
	.blog-feature__body { padding: 24px 22px; }
	.article-body { font-size: 1.05rem; }
	.article-author-bio { padding: 24px; }
}


/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
	.nav__cta { display: none; }
	.menu { display: none; }
	.nav-toggle { display: flex; margin-left: auto; }
	.hero__inner { grid-template-columns: 1fr; gap: 48px; }
	.hero { padding: 60px 0 80px; }
	.how__steps { grid-template-columns: 1fr; }
	.about-eli__grid { grid-template-columns: 1fr; gap: 36px; }
	.t-grid { grid-template-columns: repeat(2, 1fr); }
	.stats__grid { grid-template-columns: repeat(3, 1fr); }
	.programs__grid { grid-template-columns: 1fr; }
	.program--featured { transform: none; }
	.program--featured:hover { transform: translateY(-4px); }
	.pillars__grid { grid-template-columns: repeat(2, 1fr); }
	.insights__grid { grid-template-columns: 1fr; }
	.guarantee__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
	.guarantee__seal { margin-inline: auto; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
	body { font-size: 16px; }
	.topbar__loc, .topbar__sep, .topbar__cta { display: none; }
	.section-head { margin-bottom: 36px; }
	.hero { padding: 40px 0 60px; }
	.hero__ctas .btn { width: 100%; }
	.hero__trustline { gap: 12px; font-size: .85rem; }
	.services, .how, .about-eli, .programs, .pillars, .testimonials, .stats, .faq, .insights, .final-cta { padding: 60px 0; }
	.t-grid { grid-template-columns: 1fr; }
	.stats__grid { grid-template-columns: repeat(2, 1fr); }
	.pillars__grid { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
	.sticky-cta { display: flex; }
	body { padding-bottom: 88px; }
	.site-footer { padding-bottom: 0; }
	.faq-item summary { padding: 18px 20px; font-size: 1rem; }
	.faq-item__a { padding: 0 20px 18px; }
	.exit-modal__panel { padding: 32px 24px; }
	.exit-modal h2 { font-size: 1.5rem; }
}

/* ---------- Focus states (keyboard) ---------- */
:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
	border-radius: 4px;
}
.btn:focus-visible,
.faq-item summary:focus-visible,
.brand__logo-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Touch: neutralize sticky :hover transforms ---------- */
@media (hover: none) and (pointer: coarse) {
	.btn:hover,
	.service-card:hover, .goal-card:hover, .program:hover, .program--featured:hover,
	.t-card:hover, .insight-card:hover, .blog-card:hover, .blog-feature:hover,
	.article-nav__prev:hover, .article-nav__next:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
	}
	/* Keep gentle opacity/color transitions; remove movement only */
	.reveal { opacity: 1; transform: none; transition: none; }
	.goal-index > *, .manifesto > *, .programs__grid > *,
	.how__steps > *, .t-grid > *, .insights__grid > * { opacity: 1; transform: none; transition: none; }
	.btn:hover, .btn:active,
	.service-card:hover, .goal-card:hover, .program:hover, .program--featured:hover,
	.t-card:hover, .insight-card:hover, .blog-card:hover, .blog-feature:hover,
	.article-nav__prev:hover, .article-nav__next:hover,
	.exit-modal.is-visible .exit-modal__panel { transform: none !important; }
}

/* =================================================================
   CreditSentry Definition — dictionary-entry brand statement
   ================================================================= */
.credituity-def {
	padding: 80px 0;
	background: var(--paper);
}
.credituity-def--inverted { background: var(--navy); }

.credituity-def__card {
	background: var(--cream);
	border: 1px solid var(--gold-soft);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	padding: 56px 64px;
	position: relative;
}
.credituity-def__card::before {
	content: "";
	position: absolute;
	top: 22px; left: 22px; right: 22px; bottom: 22px;
	border: 1px solid rgba(200, 162, 75, .22);
	border-radius: calc(var(--radius-lg) - 8px);
	pointer-events: none;
}
.credituity-def--inverted .credituity-def__card {
	background: var(--navy-2);
	border-color: rgba(200, 162, 75, .35);
	color: var(--cream);
}

.credituity-def__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--gold-soft);
	margin-bottom: 32px;
}
.credituity-def--inverted .credituity-def__header { border-bottom-color: rgba(200, 162, 75, .35); }

.credituity-def__headword {
	font-family: var(--font-serif);
	font-weight: 800;
	font-size: clamp(2.4rem, 4.5vw + .5rem, 4rem);
	line-height: 1.05;
	letter-spacing: -0.015em;
	color: var(--navy);
	margin: 0;
}
.credituity-def--inverted .credituity-def__headword { color: var(--cream); }
.credituity-def__dot {
	color: var(--gold);
	font-weight: 600;
	padding: 0 .04em;
}

.credituity-def__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: baseline;
	margin: 0;
	font-family: var(--font-sans);
}
.credituity-def__pron {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.05rem;
	color: var(--ink-soft);
}
.credituity-def--inverted .credituity-def__pron { color: var(--gold-soft); }
.credituity-def__pos {
	font-size: .82rem;
	text-transform: uppercase;
	letter-spacing: .14em;
	font-weight: 700;
	color: var(--gold-2);
}
.credituity-def--inverted .credituity-def__pos { color: var(--gold); }

.credituity-def__senses {
	list-style: none;
	counter-reset: sense;
	padding: 0;
	margin: 0 0 32px;
}
.credituity-def__senses > li {
	counter-increment: sense;
	position: relative;
	padding-left: 44px;
	margin-bottom: 18px;
	font-size: 1.08rem;
	line-height: 1.65;
	color: var(--ink);
}
.credituity-def--inverted .credituity-def__senses > li { color: var(--cream); }
.credituity-def__senses > li::before {
	content: counter(sense) ".";
	position: absolute;
	left: 0;
	top: 0;
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 1.4rem;
	color: var(--gold);
	line-height: 1.2;
}
.credituity-def__senses em {
	font-family: var(--font-serif);
	font-style: italic;
	color: var(--gold-2);
}
.credituity-def--inverted .credituity-def__senses em { color: var(--gold); }
.credituity-def__pos-inline {
	font-family: var(--font-sans);
	font-style: normal;
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-weight: 700;
	color: var(--muted);
	margin-right: 6px;
}
.credituity-def--inverted .credituity-def__pos-inline { color: var(--gold-soft); }

.credituity-def__notes {
	margin: 0;
	padding-top: 24px;
	border-top: 1px dashed rgba(200, 162, 75, .45);
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.credituity-def__note {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 16px;
	align-items: baseline;
}
.credituity-def__note dt {
	font-family: var(--font-sans);
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .14em;
	font-weight: 700;
	color: var(--gold-2);
	margin: 0;
}
.credituity-def--inverted .credituity-def__note dt { color: var(--gold); }
.credituity-def__note dd {
	margin: 0;
	font-size: .98rem;
	line-height: 1.55;
	color: var(--ink-soft);
}
.credituity-def--inverted .credituity-def__note dd { color: var(--gold-soft); }
.credituity-def__note dd em {
	font-family: var(--font-serif);
	font-style: italic;
	color: var(--navy);
	font-weight: 600;
}
.credituity-def--inverted .credituity-def__note dd em { color: var(--cream); }

.credituity-def__note--examples dd {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.credituity-def__example {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.02rem;
	color: var(--navy);
}
.credituity-def--inverted .credituity-def__example { color: var(--cream); }

/* ----- Compact variant: tighter card, single sense, smaller headword ----- */
.credituity-def--compact { padding: 56px 0; }
.credituity-def--compact .credituity-def__card { padding: 40px 44px; }
.credituity-def--compact .credituity-def__headword { font-size: clamp(2rem, 3.6vw + .4rem, 3.2rem); }
.credituity-def--compact .credituity-def__notes { padding-top: 18px; }

/* ----- Mobile ----- */
@media (max-width: 720px) {
	.credituity-def { padding: 56px 0; }
	.credituity-def__card { padding: 36px 24px; }
	.credituity-def__card::before { top: 14px; left: 14px; right: 14px; bottom: 14px; }
	.credituity-def__senses > li { padding-left: 36px; font-size: 1rem; }
	.credituity-def__senses > li::before { font-size: 1.2rem; }
	.credituity-def__note { grid-template-columns: 1fr; gap: 4px; }
}

/* =================================================================
   LEGAL — Terms & Privacy page templates (document register)
   ================================================================= */
.legal-doc .section-head { margin-bottom: 40px; max-width: none; }
.legal-doc .entry-title { font-size: clamp(2rem, 2.2vw + 1rem, 2.9rem); margin-bottom: 12px; }
.legal-doc__updated {
	display: inline-block;
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .01em;
	color: var(--ink-soft);
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 6px 12px;
	margin: 0;
}
.legal-doc__body { max-width: 760px; font-size: 1.02rem; line-height: 1.72; color: var(--ink-soft); }
.legal-doc__body > * { margin-bottom: 1.1em; }
.legal-doc__body h2 {
	font-size: clamp(1.2rem, .6vw + 1rem, 1.5rem);
	color: var(--navy);
	margin-top: 2em;
	margin-bottom: .5em;
	padding-top: 1.1em;
	border-top: 1px solid var(--line);
}
.legal-doc__body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-doc__body strong { color: var(--ink); font-weight: 700; }
.legal-doc__body ul { margin: 0 0 1.1em; padding-left: 1.3em; }
.legal-doc__body li { margin-bottom: .55em; }
.legal-doc__body li::marker { color: var(--gold-2); }
.legal-doc__body a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--gold); }
.legal-doc__body a:hover { color: var(--gold-2); }
