/* ============================================================
 * Litigation Docs — about.css
 *
 * Styles for the dedicated About Us template (page-about.php).
 * Deliberately echoes the homepage hero language (ink + parchment,
 * section-mark sigils, faint ruled-paper pattern, crimson radial
 * lighting) so the two pages feel like chapters of the same brief.
 * ============================================================ */

.ld-about { background: var(--ld-parchment); }

/* ------------------------------------------------------------
 * 1. Section-mark sigil (§ 01 · The practice) — shared device
 * ------------------------------------------------------------ */
.ld-section-mark {
	display: inline-flex;
	align-items: baseline;
	gap: var(--ld-s-3);
	margin: 0 0 var(--ld-s-4);
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ld-crimson);
}
.ld-section-mark span {
	font-weight: 500;
}
.ld-section-mark em {
	font-family: var(--ld-serif);
	font-style: italic;
	font-size: var(--ld-fs-sm);
	font-weight: 400;
	color: var(--ld-slate);
	letter-spacing: 0;
	text-transform: none;
}
.ld-section-mark--on-dark em { color: rgba(247, 243, 236, 0.72); }

/* ------------------------------------------------------------
 * 1. HERO
 * ------------------------------------------------------------ */
.ld-about-hero {
	background: var(--ld-ink);
	color: var(--ld-parchment);
	padding: var(--ld-s-7) 0 var(--ld-s-7);
	position: relative;
	overflow: hidden;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
}
.ld-about-hero::before {
	content: '';
	position: absolute; inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(70% 90% at 85% 10%, rgba(172, 31, 43, 0.28), transparent 60%),
		radial-gradient(50% 60% at 10% 90%, rgba(172, 31, 43, 0.12), transparent 70%);
}
.ld-about-hero::after {
	content: '';
	position: absolute; inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image: repeating-linear-gradient(
		to bottom,
		transparent 0,
		transparent 47px,
		rgba(247, 243, 236, 0.03) 47px,
		rgba(247, 243, 236, 0.03) 48px
	);
}
.ld-about-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--ld-wide);
	margin-inline: auto;
	padding: 0 var(--ld-s-4);
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: var(--ld-s-6);
	align-items: center;
}
@media (min-width: 1024px) {
	.ld-about-hero__inner { padding-inline: var(--ld-s-5); gap: var(--ld-s-7); }
}
@media (max-width: 900px) {
	.ld-about-hero__inner { grid-template-columns: 1fr; gap: var(--ld-s-5); }
}

.ld-about-hero__content { max-width: 620px; }

.ld-about-hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: var(--ld-s-3);
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	font-weight: 400;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(247, 243, 236, 0.72);
	margin: 0 0 var(--ld-s-4);
}
.ld-about-hero__kicker::before {
	content: '';
	width: 32px; height: 1px;
	background: var(--ld-crimson);
	display: inline-block;
	flex-shrink: 0;
}
.ld-about-hero__sigil {
	font-family: var(--ld-serif);
	font-style: italic;
	font-size: var(--ld-fs-sm);
	letter-spacing: 0;
	color: var(--ld-crimson);
	text-transform: none;
}
.ld-about-hero__headline {
	font-family: var(--ld-serif);
	font-size: clamp(2.75rem, 4vw + 1.5rem, 5.25rem);
	line-height: 0.98;
	letter-spacing: -0.025em;
	color: var(--ld-parchment);
	margin: 0 0 var(--ld-s-4);
	font-weight: 500;
	font-feature-settings: 'ss01';
}
.ld-about-hero__headline em { font-style: italic; font-weight: 400; color: var(--ld-parchment); }
.ld-about-hero__lede {
	font-size: var(--ld-fs-md);
	line-height: 1.55;
	color: rgba(247, 243, 236, 0.82);
	max-width: 52ch;
	margin: 0 0 var(--ld-s-5);
}
.ld-about-hero__actions {
	display: inline-flex;
	flex-wrap: wrap;
	gap: var(--ld-s-3);
}
.ld-about-hero__actions .ld-btn--ghost {
	color: var(--ld-parchment);
	border-color: rgba(247, 243, 236, 0.35);
}
.ld-about-hero__actions .ld-btn--ghost:hover {
	background: var(--ld-parchment);
	color: var(--ld-ink);
	border-color: var(--ld-parchment);
}

/* --- Facts-of-the-firm stat card (right column of hero) -------------- */
.ld-about-card {
	background: rgba(247, 243, 236, 0.04);
	border: 1px solid rgba(247, 243, 236, 0.12);
	border-radius: 6px;
	padding: var(--ld-s-4) var(--ld-s-4) var(--ld-s-3);
	position: relative;
	backdrop-filter: blur(4px);
}
.ld-about-card::before {
	/* Top crimson accent line — evokes a case-caption rule */
	content: '';
	position: absolute; top: 0; left: var(--ld-s-4); right: var(--ld-s-4);
	height: 2px;
	background: var(--ld-crimson);
}
.ld-about-card__header {
	display: flex; align-items: center; gap: var(--ld-s-2);
	padding-bottom: var(--ld-s-3);
	margin-bottom: var(--ld-s-3);
	border-bottom: 1px solid rgba(247, 243, 236, 0.08);
}
.ld-about-card__stamp {
	width: 20px; height: 20px;
	background: url("../img/favicon-512.png") center/contain no-repeat;
	opacity: 0.85;
}
.ld-about-card__label {
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(247, 243, 236, 0.72);
}
.ld-about-card__list { margin: 0; display: grid; gap: var(--ld-s-3); }
.ld-about-card__row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: var(--ld-s-3);
	align-items: baseline;
	padding-bottom: var(--ld-s-2);
	border-bottom: 1px dashed rgba(247, 243, 236, 0.08);
}
.ld-about-card__row:last-child { border-bottom: none; padding-bottom: 0; }
.ld-about-card__row dt {
	font-family: var(--ld-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(247, 243, 236, 0.56);
	margin: 0;
}
.ld-about-card__row dd {
	margin: 0;
	text-align: right;
	font-size: var(--ld-fs-sm);
	color: rgba(247, 243, 236, 0.92);
}
.ld-about-card__row dd strong {
	color: var(--ld-parchment);
	font-weight: 600;
	font-family: var(--ld-serif);
	font-size: var(--ld-fs-md);
	margin-right: 4px;
}

/* ------------------------------------------------------------
 * 2. Shared section wrapper
 * ------------------------------------------------------------ */
.ld-about-section { padding: var(--ld-s-7) 0; }
.ld-about-section__inner {
	max-width: var(--ld-wide);
	margin-inline: auto;
	padding: 0 var(--ld-s-4);
}
@media (min-width: 1024px) { .ld-about-section__inner { padding-inline: var(--ld-s-5); } }

.ld-about-section__header { margin-bottom: var(--ld-s-5); max-width: 50ch; }
.ld-about-section__header--centered {
	margin-inline: auto;
	text-align: center;
}
.ld-about-section__header h2 {
	font-size: clamp(2rem, 2.5vw + 1rem, var(--ld-fs-2xl));
	margin: 0;
	letter-spacing: -0.015em;
	line-height: 1.1;
}

/* § 01 and § 04: prose sections */
.ld-about-section--prose { background: var(--ld-parchment); }
.ld-about-prose {
	font-size: var(--ld-fs-md);
	line-height: 1.65;
	color: var(--ld-slate);
	max-width: 68ch;
}
.ld-about-prose p + p { margin-top: var(--ld-s-3); }

/* § 02: method — parchment-alt with ruled lines */
.ld-about-section--method {
	background: var(--ld-parchment-alt);
	position: relative;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
}
.ld-about-section--method::before {
	content: '';
	position: absolute; inset: 0;
	background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 31px, var(--ld-rule) 31px, var(--ld-rule) 32px);
	opacity: 0.4;
	pointer-events: none;
}
.ld-about-method .ld-about-section__inner { position: relative; }
.ld-about-method__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: var(--ld-s-6);
	align-items: start;
}
@media (max-width: 900px) { .ld-about-method__grid { grid-template-columns: 1fr; gap: var(--ld-s-5); } }
.ld-about-method__prose p { font-size: var(--ld-fs-md); line-height: 1.65; color: var(--ld-slate); max-width: 52ch; }
.ld-about-method__prose p + p { margin-top: var(--ld-s-3); }

.ld-about-tools {
	background: var(--ld-white);
	border: 1px solid var(--ld-rule);
	border-radius: var(--ld-radius-lg);
	padding: var(--ld-s-5);
}
.ld-about-tools__title {
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ld-crimson);
	margin: 0 0 var(--ld-s-3);
	padding-bottom: var(--ld-s-3);
	border-bottom: 1px solid var(--ld-rule);
}
.ld-about-tools__item + .ld-about-tools__item {
	margin-top: var(--ld-s-3);
	padding-top: var(--ld-s-3);
	border-top: 1px dashed var(--ld-rule);
}
.ld-about-tools__item h4 {
	font-family: var(--ld-serif);
	font-size: var(--ld-fs-lg);
	margin: 0 0 var(--ld-s-1);
	color: var(--ld-ink);
	letter-spacing: -0.005em;
}
.ld-about-tools__item p {
	font-size: var(--ld-fs-sm);
	line-height: 1.55;
	color: var(--ld-slate);
	margin: 0;
}

/* § 03: Verification — dark, pull-quote centerpiece */
.ld-about-section--dark {
	background: var(--ld-ink);
	color: var(--ld-parchment);
	position: relative;
	isolation: isolate;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
}
.ld-about-section--dark::before {
	content: '';
	position: absolute; inset: 0; z-index: -1;
	background: radial-gradient(80% 60% at 50% 0%, rgba(172, 31, 43, 0.18), transparent 70%);
}
.ld-about-verification .ld-about-section__header h2 { color: var(--ld-parchment); }
.ld-about-verification__post {
	max-width: 60ch;
	margin: var(--ld-s-5) auto 0;
	text-align: center;
	color: rgba(247, 243, 236, 0.74);
	font-size: var(--ld-fs-sm);
	line-height: 1.65;
}

.ld-about-pullquote {
	margin: 0 auto;
	max-width: 30ch;
	text-align: center;
	position: relative;
	padding: var(--ld-s-5) 0;
}
.ld-about-pullquote__mark {
	font-family: var(--ld-serif);
	font-size: 8rem;
	line-height: 0.6;
	color: var(--ld-crimson);
	display: block;
	margin-bottom: -1.5rem;
	font-style: italic;
}
.ld-about-pullquote blockquote {
	font-family: var(--ld-serif);
	font-size: clamp(1.625rem, 2vw + 1rem, 2.25rem);
	line-height: 1.2;
	letter-spacing: -0.015em;
	color: var(--ld-parchment);
	font-style: italic;
	margin: 0 0 var(--ld-s-3);
	font-weight: 400;
	border: none;
	padding: 0;
}
.ld-about-pullquote figcaption {
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(247, 243, 236, 0.56);
}

/* § 04 team grid */
.ld-about-team-grid {
	list-style: none;
	margin: var(--ld-s-5) 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--ld-s-4);
}
@media (max-width: 900px) { .ld-about-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .ld-about-team-grid { grid-template-columns: 1fr; } }
.ld-about-team-grid li {
	padding: var(--ld-s-4);
	background: var(--ld-white);
	border: 1px solid var(--ld-rule);
	border-radius: var(--ld-radius-lg);
	position: relative;
	min-width: 0;
	transition: transform var(--ld-d-std) var(--ld-ease), box-shadow var(--ld-d-std) var(--ld-ease);
}
.ld-about-team-grid li + li { margin-top: 0; } /* beat li+li rule from base */
.ld-about-team-grid li:hover { transform: translateY(-2px); box-shadow: var(--ld-shadow-soft); }
.ld-about-team-grid__numeral {
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	letter-spacing: 0.16em;
	color: var(--ld-crimson);
	display: block;
	margin-bottom: var(--ld-s-2);
}
.ld-about-team-grid h3 {
	font-size: var(--ld-fs-md);
	margin: 0 0 var(--ld-s-2);
	line-height: 1.15;
}
.ld-about-team-grid p {
	font-size: var(--ld-fs-sm);
	line-height: 1.55;
	color: var(--ld-slate);
	margin: 0;
}

/* ------------------------------------------------------------
 * 6. Credentials bar (4-up pillars, emphasizing the firm's rigor)
 * ------------------------------------------------------------ */
.ld-about-credentials {
	padding: var(--ld-s-7) 0;
	background: var(--ld-parchment-alt);
	position: relative;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
}
.ld-about-credentials::before {
	content: '';
	position: absolute; inset: 0;
	background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 31px, var(--ld-rule) 31px, var(--ld-rule) 32px);
	opacity: 0.4;
	pointer-events: none;
}
.ld-about-credentials__inner {
	max-width: var(--ld-wide);
	margin-inline: auto;
	padding: 0 var(--ld-s-4);
	position: relative;
}
@media (min-width: 1024px) { .ld-about-credentials__inner { padding-inline: var(--ld-s-5); } }
.ld-about-credentials__heading {
	font-size: clamp(1.875rem, 2vw + 1rem, var(--ld-fs-2xl));
	margin: 0 0 var(--ld-s-5);
	max-width: 24ch;
	letter-spacing: -0.015em;
}
.ld-about-credentials__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: var(--ld-rule-strong);
	border: 1px solid var(--ld-rule-strong);
}
@media (max-width: 900px) { .ld-about-credentials__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .ld-about-credentials__grid { grid-template-columns: 1fr; } }
.ld-about-credentials__grid > div {
	padding: var(--ld-s-5);
	background: var(--ld-white);
	min-width: 0;
}
.ld-about-credentials__kicker {
	font-family: var(--ld-serif);
	font-style: italic;
	font-size: var(--ld-fs-lg);
	color: var(--ld-crimson);
	display: block;
	margin-bottom: var(--ld-s-3);
}
.ld-about-credentials__grid h3 {
	font-size: var(--ld-fs-md);
	margin: 0 0 var(--ld-s-2);
	line-height: 1.2;
}
.ld-about-credentials__grid p {
	font-size: var(--ld-fs-sm);
	line-height: 1.55;
	color: var(--ld-slate);
	margin: 0;
}

/* ------------------------------------------------------------
 * 7. Close CTA
 * ------------------------------------------------------------ */
.ld-about-close {
	background: var(--ld-ink);
	color: var(--ld-parchment);
	padding: var(--ld-s-7) 0;
	text-align: center;
	position: relative;
	isolation: isolate;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
}
.ld-about-close::before {
	content: '';
	position: absolute; inset: 0; z-index: -1;
	background:
		radial-gradient(60% 80% at 50% 0%, rgba(172, 31, 43, 0.22), transparent 70%),
		radial-gradient(40% 60% at 50% 100%, rgba(172, 31, 43, 0.12), transparent 70%);
}
.ld-about-close__inner {
	max-width: 760px;
	margin-inline: auto;
	padding: 0 var(--ld-s-4);
}
.ld-about-close__kicker {
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ld-crimson);
	margin: 0 0 var(--ld-s-3);
}
.ld-about-close h2 {
	font-size: clamp(2rem, 3vw + 1rem, var(--ld-fs-3xl));
	color: var(--ld-parchment);
	margin: 0 0 var(--ld-s-3);
	line-height: 1.1;
	letter-spacing: -0.02em;
}
.ld-about-close h2 em {
	font-style: italic;
	font-weight: 400;
	color: var(--ld-parchment);
}
.ld-about-close__sub {
	color: rgba(247, 243, 236, 0.74);
	margin: 0 auto var(--ld-s-5);
	max-width: 52ch;
}
.ld-about-close__actions {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--ld-s-3);
	margin-bottom: var(--ld-s-5);
}
.ld-about-close__actions .ld-btn--ghost {
	color: var(--ld-parchment);
	border-color: rgba(247, 243, 236, 0.35);
}
.ld-about-close__actions .ld-btn--ghost:hover {
	background: var(--ld-parchment);
	color: var(--ld-ink);
	border-color: var(--ld-parchment);
}
.ld-about-close__contact {
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(247, 243, 236, 0.56);
	margin: 0;
}
.ld-about-close__contact a { color: var(--ld-parchment); }

/* ============================================================
 * How It Works page (page-how-it-works.php)
 * Shares design tokens with the About page.
 * ============================================================ */

.ld-how { background: var(--ld-parchment); }

.ld-how-steps {
	padding: var(--ld-s-7) 0;
	background: var(--ld-parchment-alt);
	position: relative;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
}
.ld-how-steps::before {
	content: '';
	position: absolute; inset: 0;
	background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 31px, var(--ld-rule) 31px, var(--ld-rule) 32px);
	opacity: 0.4;
	pointer-events: none;
}
.ld-how-steps__inner {
	max-width: var(--ld-wide);
	margin-inline: auto;
	padding: 0 var(--ld-s-4);
	position: relative;
}
@media (min-width: 1024px) { .ld-how-steps__inner { padding-inline: var(--ld-s-5); } }

.ld-how-steps__header { margin-bottom: var(--ld-s-5); max-width: 50ch; }
.ld-how-steps__header h2 {
	font-size: clamp(2rem, 2.5vw + 1rem, var(--ld-fs-2xl));
	margin: 0;
	letter-spacing: -0.015em;
	line-height: 1.1;
}

.ld-how-steps__list {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	gap: 0;
	counter-reset: ld-step;
}
.ld-how-steps__list > li {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: var(--ld-s-5);
	padding: var(--ld-s-5) 0;
	border-top: 1px solid var(--ld-rule);
	align-items: start;
	margin: 0;
}
.ld-how-steps__list > li::before { content: none !important; }
.ld-how-steps__list > li:last-child { border-bottom: 1px solid var(--ld-rule); }
@media (max-width: 720px) {
	.ld-how-steps__list > li { grid-template-columns: 1fr; gap: var(--ld-s-3); padding: var(--ld-s-4) 0; }
}
.ld-how-step__marker {
	display: flex;
	align-items: baseline;
	gap: var(--ld-s-2);
	padding-top: 8px;
}
.ld-how-step__num {
	font-family: var(--ld-serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(2.5rem, 3vw + 1rem, 4rem);
	color: var(--ld-crimson);
	line-height: 1;
	letter-spacing: -0.03em;
}
.ld-how-step__body h3 {
	font-family: var(--ld-serif);
	font-size: clamp(1.375rem, 1.5vw + 0.75rem, var(--ld-fs-xl));
	line-height: 1.2;
	margin: 0 0 var(--ld-s-3);
	color: var(--ld-ink);
	letter-spacing: -0.01em;
	max-width: 28ch;
}
.ld-how-step__body p {
	font-size: var(--ld-fs-md);
	line-height: 1.65;
	color: var(--ld-slate);
	margin: 0 0 var(--ld-s-3);
	max-width: 60ch;
}
.ld-how-step__meta {
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	letter-spacing: 0.04em;
	color: var(--ld-muted);
	padding: var(--ld-s-2) var(--ld-s-3);
	background: var(--ld-white);
	border-left: 2px solid var(--ld-crimson);
	max-width: 60ch;
}
.ld-how-step__meta strong {
	color: var(--ld-ink);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-right: 8px;
}

/* FAQ */
.ld-how-faq {
	padding: var(--ld-s-7) 0;
	background: var(--ld-parchment);
}
.ld-how-faq__inner {
	max-width: var(--ld-wide);
	margin-inline: auto;
	padding: 0 var(--ld-s-4);
}
@media (min-width: 1024px) { .ld-how-faq__inner { padding-inline: var(--ld-s-5); } }

.ld-how-faq__list {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
}
@media (max-width: 720px) { .ld-how-faq__list { grid-template-columns: 1fr; } }
.ld-how-faq__item {
	padding: var(--ld-s-4) var(--ld-s-4) var(--ld-s-4) 0;
	border-top: 1px solid var(--ld-rule);
}
.ld-how-faq__item:nth-child(even) { padding-left: var(--ld-s-5); }
@media (max-width: 720px) { .ld-how-faq__item:nth-child(even) { padding-left: 0; } }
.ld-how-faq__item dt {
	font-family: var(--ld-serif);
	font-size: var(--ld-fs-lg);
	color: var(--ld-ink);
	margin: 0 0 var(--ld-s-2);
	letter-spacing: -0.005em;
	line-height: 1.25;
}
.ld-how-faq__item dd {
	margin: 0;
	font-size: var(--ld-fs-sm);
	line-height: 1.65;
	color: var(--ld-slate);
}
.ld-how-faq__item dd a { color: var(--ld-crimson); font-weight: 600; }

/* ============================================================
 * Register page (page-register.php)
 * ============================================================ */

.ld-register { background: var(--ld-parchment); }

.ld-register-hero {
	background: var(--ld-ink);
	color: var(--ld-parchment);
	padding: var(--ld-s-7) 0;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
}
.ld-register-hero::before {
	content: '';
	position: absolute; inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(70% 90% at 85% 10%, rgba(172, 31, 43, 0.28), transparent 60%),
		radial-gradient(50% 60% at 10% 90%, rgba(172, 31, 43, 0.12), transparent 70%);
}
.ld-register-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--ld-wide);
	margin-inline: auto;
	padding: 0 var(--ld-s-4);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
	gap: var(--ld-s-6);
	align-items: start;
}
@media (min-width: 1024px) { .ld-register-hero__inner { padding-inline: var(--ld-s-5); gap: var(--ld-s-7); } }
@media (max-width: 900px) { .ld-register-hero__inner { grid-template-columns: 1fr; gap: var(--ld-s-5); } }

.ld-register-hero__content { max-width: 560px; padding-top: var(--ld-s-3); }
.ld-register-hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: var(--ld-s-3);
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	font-weight: 400;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(247, 243, 236, 0.72);
	margin: 0 0 var(--ld-s-4);
}
.ld-register-hero__kicker::before {
	content: '';
	width: 32px; height: 1px;
	background: var(--ld-crimson);
	display: inline-block;
	flex-shrink: 0;
}
.ld-register-hero__sigil {
	font-family: var(--ld-serif);
	font-style: italic;
	font-size: var(--ld-fs-sm);
	letter-spacing: 0;
	color: var(--ld-crimson);
	text-transform: none;
}
.ld-register-hero__headline {
	font-family: var(--ld-serif);
	font-size: clamp(2.25rem, 3vw + 1.25rem, 4.25rem);
	line-height: 1.02;
	letter-spacing: -0.025em;
	color: #F7F3EC;
	margin: 0 0 var(--ld-s-4);
	font-weight: 500;
}
.ld-register-hero__headline em { font-style: italic; font-weight: 400; color: #F7F3EC; }
.ld-register-hero__lede {
	font-size: var(--ld-fs-md);
	line-height: 1.55;
	color: rgba(247, 243, 236, 0.82);
	max-width: 52ch;
	margin: 0 0 var(--ld-s-5);
}
.ld-register-hero__benefits {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	gap: var(--ld-s-3);
}
.ld-register-hero__benefits li {
	display: flex;
	align-items: flex-start;
	gap: var(--ld-s-3);
	font-size: var(--ld-fs-sm);
	color: rgba(247, 243, 236, 0.88);
	line-height: 1.5;
	margin: 0;
	padding: 0;
}
.ld-register-hero__benefits li::before { content: none !important; }
.ld-register-hero__dot {
	width: 8px; height: 8px;
	background: var(--ld-crimson);
	border-radius: 50%;
	margin-top: 8px;
	flex-shrink: 0;
}

/* --- Registration card --- */
.ld-register-card {
	background: var(--ld-parchment);
	border-radius: 8px;
	padding: var(--ld-s-5);
	border-top: 4px solid var(--ld-crimson);
	box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
	color: var(--ld-ink);
}
.ld-register-card__header {
	display: flex;
	align-items: center;
	gap: var(--ld-s-2);
	padding-bottom: var(--ld-s-3);
	margin-bottom: var(--ld-s-3);
	border-bottom: 1px solid var(--ld-rule);
}
.ld-register-card__stamp {
	width: 20px; height: 20px;
	background: url("../img/favicon-512.png") center/contain no-repeat;
}
.ld-register-card__label {
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ld-muted);
}
.ld-register-card__title {
	font-family: var(--ld-serif);
	font-size: var(--ld-fs-xl);
	margin: 0 0 var(--ld-s-4);
	letter-spacing: -0.015em;
	line-height: 1.1;
	color: var(--ld-ink);
}
.ld-register-card__errors {
	background: rgba(172, 31, 43, 0.08);
	border-left: 3px solid var(--ld-crimson);
	padding: var(--ld-s-3) var(--ld-s-4);
	margin-bottom: var(--ld-s-4);
	font-size: var(--ld-fs-sm);
	color: var(--ld-crimson-deep);
	border-radius: 0 var(--ld-radius) var(--ld-radius) 0;
}
.ld-register-card__errors p { margin: 0 0 4px; }
.ld-register-card__errors p:last-child { margin: 0; }

.ld-register-form__row { margin-bottom: var(--ld-s-3); }
.ld-register-form__row--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--ld-s-3);
}
@media (max-width: 480px) { .ld-register-form__row--split { grid-template-columns: 1fr; gap: 0; } }
.ld-register-form__row--split > div { margin-bottom: 0; }

.ld-register-form label {
	display: block;
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ld-muted);
	margin-bottom: 6px;
}
.ld-register-form input[type="text"],
.ld-register-form input[type="email"],
.ld-register-form input[type="password"] {
	width: 100%;
	padding: 12px 14px;
	font-size: var(--ld-fs-md);
	font-family: var(--ld-sans);
	border: 1px solid var(--ld-rule-strong);
	border-radius: var(--ld-radius);
	background: var(--ld-white);
	color: var(--ld-ink);
	box-sizing: border-box;
}
.ld-register-form input:focus {
	outline: none;
	border-color: var(--ld-crimson);
	box-shadow: 0 0 0 3px rgba(172, 31, 43, 0.12);
}
.ld-register-form__hint {
	margin: 6px 0 0;
	font-size: var(--ld-fs-xs);
	color: var(--ld-muted);
}
.ld-register-form__submit { width: 100%; margin-top: var(--ld-s-3); }

/* Attorney attestation checkbox row.
 * Styled as a subtle crimson-accented panel so it reads as an explicit
 * affirmation the user must make, not just another form control. The
 * label inside here overrides the default uppercase mono form-label
 * styling because the text is substantive prose the user must read. */
.ld-register-form__attestation {
	margin-bottom: var(--ld-s-3);
	padding: 14px 16px;
	background: rgba(172, 31, 43, 0.04);
	border-left: 3px solid var(--ld-crimson);
}
.ld-register-form__check,
.ld-register-form label.ld-register-form__check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	margin: 0;

	/* Override .ld-register-form label — the attestation label is a
	   body-text paragraph the user reads, not a field header. */
	font-family: var(--ld-serif, Georgia, serif);
	font-size: 14px;
	line-height: 1.55;
	letter-spacing: 0;
	text-transform: none;
	color: var(--ld-ink);
	text-align: left;
}
.ld-register-form__check input[type="checkbox"] {
	/* Box-model: a larger hit target than the browser default, with
	   consistent crimson accent on check. Supported in all modern
	   browsers — on older ones it falls back to the native styling. */
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin: 2px 0 0 0;
	cursor: pointer;
	accent-color: var(--ld-crimson);
}
.ld-register-form__check input[type="checkbox"]:focus-visible {
	outline: 2px solid var(--ld-crimson);
	outline-offset: 3px;
}
.ld-register-form__check-text { display: block; }
.ld-register-form__fineprint {
	font-size: var(--ld-fs-xs);
	color: var(--ld-muted);
	margin: var(--ld-s-3) 0 0;
	line-height: 1.5;
	text-align: center;
}
.ld-register-form__fineprint a { color: var(--ld-crimson); }
.ld-register-card__foot {
	margin: var(--ld-s-4) 0 0;
	padding-top: var(--ld-s-3);
	border-top: 1px solid var(--ld-rule);
	font-size: var(--ld-fs-sm);
	color: var(--ld-muted);
	text-align: center;
}
.ld-register-card__foot a { color: var(--ld-crimson); font-weight: 600; }

/* Assurance strip */
.ld-register-assurance {
	padding: var(--ld-s-7) 0;
	background: var(--ld-parchment-alt);
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
}
.ld-register-assurance__inner {
	max-width: var(--ld-wide);
	margin-inline: auto;
	padding: 0 var(--ld-s-4);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--ld-s-5);
}
@media (min-width: 1024px) { .ld-register-assurance__inner { padding-inline: var(--ld-s-5); } }
@media (max-width: 720px) { .ld-register-assurance__inner { grid-template-columns: 1fr; gap: var(--ld-s-4); } }
.ld-register-assurance__inner > div { padding: 0; }
.ld-register-assurance__kicker {
	font-family: var(--ld-serif);
	font-style: italic;
	font-size: var(--ld-fs-lg);
	color: var(--ld-crimson);
	display: block;
	margin-bottom: var(--ld-s-2);
}
.ld-register-assurance__inner h3 {
	font-size: var(--ld-fs-lg);
	margin: 0 0 var(--ld-s-2);
	line-height: 1.2;
}
.ld-register-assurance__inner p {
	font-size: var(--ld-fs-sm);
	line-height: 1.55;
	color: var(--ld-slate);
	margin: 0;
}

/* --- Stat block used by About §03 "The difference" and How It Works "What you get" --- */
.ld-about-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--ld-s-4);
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
@media (max-width: 900px) { .ld-about-stats { grid-template-columns: 1fr; gap: var(--ld-s-3); } }

.ld-about-stats > div {
	padding: var(--ld-s-5) var(--ld-s-4);
	text-align: center;
	background: rgba(247, 243, 236, 0.04);
	border: 1px solid rgba(247, 243, 236, 0.1);
	border-top: 3px solid var(--ld-crimson);
	border-radius: 4px;
	position: relative;
	transition: transform var(--ld-d-std) var(--ld-ease), background var(--ld-d-std) var(--ld-ease);
}
.ld-about-stats > div:hover {
	transform: translateY(-2px);
	background: rgba(247, 243, 236, 0.06);
}

.ld-about-stats__figure {
	display: block;
	font-family: var(--ld-serif);
	font-weight: 500;
	font-size: clamp(3rem, 3.5vw + 1rem, 4.5rem);
	line-height: 1;
	color: var(--ld-parchment);
	letter-spacing: -0.03em;
	margin-bottom: 4px;
}
.ld-about-stats__unit-inline {
	font-size: 0.55em;
	color: var(--ld-crimson);
	font-style: italic;
	margin-left: 4px;
	font-weight: 400;
}
.ld-about-stats__unit {
	display: block;
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(247, 243, 236, 0.56);
	margin-bottom: var(--ld-s-3);
	padding-bottom: var(--ld-s-3);
	border-bottom: 1px solid rgba(247, 243, 236, 0.1);
}
.ld-about-stats > div p {
	font-size: var(--ld-fs-sm);
	line-height: 1.5;
	color: rgba(247, 243, 236, 0.78);
	margin: 0;
	text-align: left;
}

.ld-about-difference__post {
	max-width: 60ch;
	margin: var(--ld-s-5) auto 0;
	text-align: center;
	color: rgba(247, 243, 236, 0.74);
	font-size: var(--ld-fs-sm);
	line-height: 1.65;
	position: relative;
	z-index: 1;
}

/* --- Contact page --------------------------------------------------- */
.ld-contact { background: var(--ld-parchment); }
.ld-contact-hero {
	background: var(--ld-ink);
	color: var(--ld-parchment);
	padding: var(--ld-s-7) 0 var(--ld-s-6);
	position: relative;
	overflow: hidden;
	isolation: isolate;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
}
.ld-contact-hero::before {
	content: '';
	position: absolute; inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(70% 90% at 80% 20%, rgba(172, 31, 43, 0.26), transparent 60%),
		radial-gradient(50% 60% at 20% 90%, rgba(172, 31, 43, 0.1), transparent 70%);
}
.ld-contact-hero::after {
	content: '';
	position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 47px, rgba(247,243,236,0.03) 47px, rgba(247,243,236,0.03) 48px);
}
.ld-contact-hero__inner {
	position: relative; z-index: 1;
	max-width: var(--ld-wide);
	margin-inline: auto;
	padding: 0 var(--ld-s-4);
	text-align: center;
}
@media (min-width: 1024px) { .ld-contact-hero__inner { padding-inline: var(--ld-s-5); } }
.ld-contact-hero__kicker {
	display: inline-flex; align-items: center; gap: var(--ld-s-3);
	font-family: var(--ld-mono); font-size: var(--ld-fs-xs);
	letter-spacing: 0.22em; text-transform: uppercase;
	color: rgba(247,243,236,0.72); margin: 0 0 var(--ld-s-4);
}
.ld-contact-hero__kicker em {
	font-family: var(--ld-serif); font-style: italic; font-size: var(--ld-fs-sm);
	color: var(--ld-crimson); text-transform: none; letter-spacing: 0;
}
.ld-contact-hero h1 {
	font-family: var(--ld-serif);
	font-size: clamp(2.5rem, 3vw + 1.5rem, 4.5rem);
	line-height: 1;
	letter-spacing: -0.025em;
	color: var(--ld-parchment);
	margin: 0 0 var(--ld-s-4);
	max-width: 20ch;
	margin-inline: auto;
	font-weight: 500;
}
.ld-contact-hero h1 em { font-style: italic; font-weight: 400; }
.ld-contact-hero__lede {
	font-size: var(--ld-fs-md);
	color: rgba(247,243,236,0.82);
	max-width: 54ch;
	margin: 0 auto;
	line-height: 1.55;
}

.ld-contact-body {
	padding: var(--ld-s-7) 0;
	background: var(--ld-parchment);
}
.ld-contact-body__inner {
	max-width: var(--ld-wide);
	margin-inline: auto;
	padding: 0 var(--ld-s-4);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
	gap: var(--ld-s-6);
	align-items: start;
}
@media (min-width: 1024px) { .ld-contact-body__inner { padding-inline: var(--ld-s-5); gap: var(--ld-s-7); } }
@media (max-width: 900px)  { .ld-contact-body__inner { grid-template-columns: 1fr; gap: var(--ld-s-5); } }

.ld-contact-form-card {
	background: var(--ld-white);
	border: 1px solid var(--ld-rule);
	border-radius: 8px;
	border-top: 4px solid var(--ld-crimson);
	padding: var(--ld-s-5);
}
.ld-contact-form-card h2 {
	font-family: var(--ld-serif);
	font-size: var(--ld-fs-xl);
	margin: 0 0 var(--ld-s-2);
	letter-spacing: -0.015em;
}
.ld-contact-form-card > p {
	font-size: var(--ld-fs-sm);
	color: var(--ld-muted);
	margin: 0 0 var(--ld-s-4);
	padding-bottom: var(--ld-s-3);
	border-bottom: 1px solid var(--ld-rule);
}

.ld-contact-form .form-row { margin-bottom: var(--ld-s-3); }
.ld-contact-form .form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--ld-s-3); }
@media (max-width: 480px) { .ld-contact-form .form-row--split { grid-template-columns: 1fr; } }
.ld-contact-form label {
	display: block;
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ld-muted);
	margin-bottom: 6px;
}
.ld-contact-form input[type="text"],
.ld-contact-form input[type="email"],
.ld-contact-form input[type="tel"],
.ld-contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	font-size: var(--ld-fs-md);
	font-family: var(--ld-sans);
	border: 1px solid var(--ld-rule-strong);
	border-radius: var(--ld-radius);
	background: var(--ld-white);
	color: var(--ld-ink);
	box-sizing: border-box;
}
.ld-contact-form textarea { min-height: 140px; resize: vertical; }
.ld-contact-form input:focus,
.ld-contact-form textarea:focus {
	outline: none;
	border-color: var(--ld-crimson);
	box-shadow: 0 0 0 3px rgba(172, 31, 43, 0.12);
}
.ld-contact-form__submit { width: 100%; margin-top: var(--ld-s-3); }
.ld-contact-form__honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important; height: 1px !important;
}

.ld-contact-details {
	display: grid;
	gap: var(--ld-s-4);
}
.ld-contact-detail {
	padding: var(--ld-s-4);
	background: var(--ld-white);
	border: 1px solid var(--ld-rule);
	border-radius: 4px;
	display: flex;
	gap: var(--ld-s-3);
	align-items: flex-start;
}
.ld-contact-detail__icon {
	width: 40px; height: 40px;
	border-radius: 4px;
	background: rgba(172, 31, 43, 0.08);
	color: var(--ld-crimson);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.ld-contact-detail__icon svg { width: 18px; height: 18px; }
.ld-contact-detail__label {
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ld-muted);
	margin: 0 0 4px;
}
.ld-contact-detail__value {
	font-family: var(--ld-serif);
	font-size: var(--ld-fs-md);
	color: var(--ld-ink);
	line-height: 1.4;
	margin: 0;
}
.ld-contact-detail__value a { color: var(--ld-ink); }
.ld-contact-detail__value a:hover { color: var(--ld-crimson); }

.ld-contact-form__status {
	padding: var(--ld-s-3) var(--ld-s-4);
	border-radius: var(--ld-radius);
	margin-bottom: var(--ld-s-3);
	font-size: var(--ld-fs-sm);
	line-height: 1.5;
}
.ld-contact-form__status--success {
	background: rgba(46, 125, 50, 0.08);
	border-left: 3px solid #2E7D32;
	color: #1B5E20;
}
.ld-contact-form__status--error {
	background: rgba(172, 31, 43, 0.08);
	border-left: 3px solid var(--ld-crimson);
	color: var(--ld-crimson-deep);
}

/* --- Intake modal attorney gate ------------------------------------- */
.ld-intake-gate {
	background: rgba(172, 31, 43, 0.06);
	border-left: 3px solid var(--ld-crimson);
	border-radius: 0 var(--ld-radius) var(--ld-radius) 0;
	padding: var(--ld-s-3) var(--ld-s-4);
	margin-bottom: var(--ld-s-4);
	display: flex;
	gap: var(--ld-s-3);
	align-items: flex-start;
}
.ld-intake-gate input[type="checkbox"] {
	margin-top: 5px;
	flex-shrink: 0;
	width: 16px; height: 16px;
	accent-color: var(--ld-crimson);
	cursor: pointer;
}
.ld-intake-gate__copy {
	font-size: var(--ld-fs-sm);
	line-height: 1.5;
	color: var(--ld-slate);
}
.ld-intake-gate__copy strong {
	display: block;
	color: var(--ld-ink);
	font-family: var(--ld-serif);
	font-size: var(--ld-fs-md);
	margin-bottom: 4px;
	letter-spacing: -0.005em;
	font-weight: 500;
}

/* Gated-field state — visual cue that the form is locked */
.ld-intake-locked {
	opacity: 0.45;
	pointer-events: none;
	filter: saturate(0.5);
	transition: opacity var(--ld-d-std) var(--ld-ease), filter var(--ld-d-std) var(--ld-ease);
}

/* Inline field error (used for date restriction feedback) */
.ld-field-inline-error {
	display: block;
	margin-top: 6px;
	color: var(--ld-crimson);
	font-size: var(--ld-fs-xs);
	font-family: var(--ld-mono);
	letter-spacing: 0.04em;
}

/* ================================================================= *
 * RESELLER PROGRAM PAGE
 * Reuses .ld-about-section, .ld-section-mark, etc. These rules add
 * the page-specific hero + card + tier + FAQ + apply treatments.
 * ================================================================= */

.ld-reseller { background: var(--ld-parchment); }

/* --- Hero ---------------------------------------------------------- */
.ld-reseller-hero {
	background: var(--ld-ink);
	color: var(--ld-parchment);
	padding: var(--ld-s-7) 0 var(--ld-s-7);
	position: relative;
	overflow: hidden;
	isolation: isolate;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
}
.ld-reseller-hero::before {
	content: '';
	position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background:
		radial-gradient(70% 90% at 85% 30%, rgba(172, 31, 43, 0.30), transparent 60%),
		radial-gradient(50% 60% at 15% 80%, rgba(184, 148, 74, 0.08), transparent 70%);
}
.ld-reseller-hero::after {
	content: '';
	position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 47px, rgba(247,243,236,0.03) 47px, rgba(247,243,236,0.03) 48px);
}
.ld-reseller-hero__inner {
	position: relative; z-index: 1;
	max-width: var(--ld-wide);
	margin-inline: auto;
	padding: 0 var(--ld-s-4);
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: var(--ld-s-6);
	align-items: center;
}
@media (min-width: 1024px) { .ld-reseller-hero__inner { padding-inline: var(--ld-s-5); gap: var(--ld-s-7); } }
@media (max-width: 900px)  { .ld-reseller-hero__inner { grid-template-columns: 1fr; gap: var(--ld-s-5); } }

.ld-reseller-hero__content { max-width: 640px; }
.ld-reseller-hero__kicker {
	display: inline-flex; align-items: center; gap: var(--ld-s-3);
	font-family: var(--ld-mono); font-size: var(--ld-fs-xs);
	letter-spacing: 0.22em; text-transform: uppercase;
	color: rgba(247,243,236,0.72); margin: 0 0 var(--ld-s-4);
}
.ld-reseller-hero__sigil {
	font-family: var(--ld-serif); font-style: italic; font-size: var(--ld-fs-sm);
	color: var(--ld-crimson); text-transform: none; letter-spacing: 0;
}
.ld-reseller-hero__headline {
	font-family: var(--ld-serif);
	font-size: clamp(2.5rem, 3.5vw + 1rem, 4.5rem);
	line-height: 1.02;
	letter-spacing: -0.025em;
	color: var(--ld-parchment);
	margin: 0 0 var(--ld-s-4);
	font-weight: 500;
}
.ld-reseller-hero__headline em {
	font-style: italic;
	font-weight: 400;
	color: var(--ld-crimson);
}
.ld-reseller-hero__lede {
	font-size: var(--ld-fs-lg);
	color: rgba(247,243,236,0.82);
	max-width: 58ch;
	margin: 0 0 var(--ld-s-5);
	line-height: 1.55;
}
.ld-reseller-hero__actions {
	display: flex; flex-wrap: wrap; gap: var(--ld-s-3);
}
.ld-reseller-hero__actions .ld-btn--ghost {
	color: var(--ld-parchment);
	border-color: rgba(247,243,236,0.3);
	background: transparent;
}
.ld-reseller-hero__actions .ld-btn--ghost:hover {
	background: rgba(247,243,236,0.08);
	border-color: rgba(247,243,236,0.55);
}

/* --- Hero metrics card --------------------------------------------- */
.ld-reseller-hero__card {
	background: rgba(247, 243, 236, 0.04);
	border: 1px solid rgba(247, 243, 236, 0.12);
	border-top: 3px solid var(--ld-crimson);
	border-radius: 6px;
	padding: var(--ld-s-5) var(--ld-s-4);
	backdrop-filter: blur(2px);
}
.ld-reseller-hero__card-top { text-align: center; margin-bottom: var(--ld-s-4); padding-bottom: var(--ld-s-4); border-bottom: 1px solid rgba(247,243,236,0.1); }
.ld-reseller-hero__card-label {
	display: block;
	font-family: var(--ld-mono); font-size: var(--ld-fs-xs);
	letter-spacing: 0.2em; text-transform: uppercase;
	color: rgba(247,243,236,0.6); margin-bottom: 8px;
}
.ld-reseller-hero__card-number {
	display: block;
	font-family: var(--ld-serif);
	font-size: clamp(5rem, 8vw, 7rem);
	line-height: 0.9;
	color: var(--ld-parchment);
	letter-spacing: -0.04em;
	font-weight: 500;
}
.ld-reseller-hero__card-number span {
	font-size: 0.5em;
	color: var(--ld-crimson);
	font-style: italic;
	font-weight: 400;
	margin-left: 4px;
}
.ld-reseller-hero__card-sub {
	display: block;
	font-family: var(--ld-serif); font-style: italic;
	font-size: var(--ld-fs-sm);
	color: rgba(247,243,236,0.7);
	margin-top: 6px;
}
.ld-reseller-hero__card-stats {
	margin: 0; display: grid; gap: var(--ld-s-3);
}
.ld-reseller-hero__card-stats > div {
	display: flex; justify-content: space-between; align-items: baseline;
	font-size: var(--ld-fs-sm);
}
.ld-reseller-hero__card-stats dt {
	font-family: var(--ld-mono); font-size: var(--ld-fs-xs);
	letter-spacing: 0.14em; text-transform: uppercase;
	color: rgba(247,243,236,0.6);
}
.ld-reseller-hero__card-stats dd {
	font-family: var(--ld-serif);
	font-size: var(--ld-fs-md);
	color: var(--ld-parchment);
	margin: 0; font-weight: 500;
}

/* --- Pillars (why partner) ----------------------------------------- */
.ld-reseller-pillars {
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--ld-s-5);
	max-width: 1000px; margin: 0 auto;
}
@media (max-width: 900px)  { .ld-reseller-pillars { grid-template-columns: 1fr; gap: var(--ld-s-4); } }
.ld-reseller-pillars > div {
	padding: var(--ld-s-5) 0;
	border-top: 1px solid var(--ld-rule);
	position: relative;
}
.ld-reseller-pillar__num {
	display: block;
	font-family: var(--ld-serif); font-style: italic;
	color: var(--ld-crimson); font-size: var(--ld-fs-xl);
	letter-spacing: 0.08em; margin-bottom: var(--ld-s-3);
	line-height: 1;
}
.ld-reseller-pillars h3 {
	font-family: var(--ld-serif);
	font-size: var(--ld-fs-lg);
	letter-spacing: -0.01em; margin: 0 0 var(--ld-s-2);
	color: var(--ld-ink); font-weight: 500;
}
.ld-reseller-pillars p { font-size: var(--ld-fs-md); color: var(--ld-slate); margin: 0; line-height: 1.55; }

/* --- How-it-works steps -------------------------------------------- */
.ld-reseller-steps {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--ld-s-4);
	counter-reset: ld-reseller-steps;
}
@media (max-width: 900px)  { .ld-reseller-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px)  { .ld-reseller-steps { grid-template-columns: 1fr; } }
.ld-reseller-steps > li {
	position: relative;
	padding: var(--ld-s-4) 0;
	border-top: 3px solid var(--ld-crimson);
}
.ld-reseller-steps__num {
	display: block;
	font-family: var(--ld-mono);
	font-size: var(--ld-fs-xs);
	letter-spacing: 0.2em;
	color: var(--ld-muted);
	margin-bottom: var(--ld-s-3);
}
.ld-reseller-steps h3 {
	font-family: var(--ld-serif); font-size: var(--ld-fs-lg);
	margin: 0 0 var(--ld-s-2); letter-spacing: -0.01em;
	font-weight: 500; color: var(--ld-ink);
}
.ld-reseller-steps p {
	font-size: var(--ld-fs-sm); color: var(--ld-slate);
	margin: 0; line-height: 1.55;
}

/* --- Tier ladder (on dark) ----------------------------------------- */
.ld-reseller-tiers {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--ld-s-4);
	max-width: 1000px; margin: 0 auto;
	align-items: stretch;
	position: relative; z-index: 1;
}
@media (max-width: 900px)  { .ld-reseller-tiers { grid-template-columns: 1fr; } }
.ld-reseller-tier {
	padding: var(--ld-s-5) var(--ld-s-4);
	text-align: center;
	background: rgba(247, 243, 236, 0.04);
	border: 1px solid rgba(247, 243, 236, 0.1);
	border-top: 3px solid var(--ld-crimson);
	border-radius: 4px;
	position: relative;
	display: flex; flex-direction: column; justify-content: center;
	transition: transform var(--ld-d-std) var(--ld-ease), background var(--ld-d-std) var(--ld-ease);
}
.ld-reseller-tier:hover { transform: translateY(-2px); background: rgba(247, 243, 236, 0.06); }
.ld-reseller-tier--featured {
	background: rgba(172, 31, 43, 0.14);
	border-color: rgba(172, 31, 43, 0.55);
	border-top-width: 4px;
	transform: translateY(-4px);
	box-shadow: 0 18px 40px -20px rgba(0,0,0,0.5);
}
.ld-reseller-tier--featured:hover { transform: translateY(-6px); background: rgba(172, 31, 43, 0.18); }
.ld-reseller-tier__badge {
	position: absolute;
	top: -11px; left: 50%; transform: translateX(-50%);
	background: var(--ld-crimson); color: var(--ld-parchment);
	font-family: var(--ld-mono); font-size: 10px;
	letter-spacing: 0.18em; text-transform: uppercase;
	padding: 4px 10px; border-radius: 2px; font-weight: 600;
	white-space: nowrap;
}
.ld-reseller-tier__name {
	font-family: var(--ld-mono); font-size: var(--ld-fs-xs);
	letter-spacing: 0.18em; text-transform: uppercase;
	color: rgba(247,243,236,0.6); margin: 0 0 var(--ld-s-3);
}
.ld-reseller-tier__discount {
	font-family: var(--ld-serif);
	font-size: clamp(3rem, 4vw, 4.5rem);
	line-height: 1; letter-spacing: -0.03em;
	color: var(--ld-parchment); margin: 0 0 var(--ld-s-3);
	font-weight: 500;
}
.ld-reseller-tier__volume {
	font-family: var(--ld-serif); font-style: italic;
	font-size: var(--ld-fs-sm); color: rgba(247,243,236,0.72);
	margin: 0; line-height: 1.5;
}
.ld-reseller-tiers__foot {
	text-align: center; max-width: 60ch; margin: var(--ld-s-5) auto 0;
	font-size: var(--ld-fs-sm); color: rgba(247,243,236,0.66);
	font-style: italic; position: relative; z-index: 1;
}

/* --- What's included ----------------------------------------------- */
.ld-reseller-included {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--ld-s-4) var(--ld-s-5);
	max-width: 1000px; margin: 0 auto;
}
@media (max-width: 720px)  { .ld-reseller-included { grid-template-columns: 1fr; } }
.ld-reseller-included > li {
	display: flex; align-items: flex-start; gap: var(--ld-s-3);
}
.ld-reseller-included__check {
	flex-shrink: 0;
	width: 36px; height: 36px;
	border-radius: 50%;
	background: rgba(172, 31, 43, 0.08);
	color: var(--ld-crimson);
	display: flex; align-items: center; justify-content: center;
	margin-top: 2px;
}
.ld-reseller-included__check svg { width: 16px; height: 16px; }
.ld-reseller-included h3 {
	font-family: var(--ld-serif);
	font-size: var(--ld-fs-md);
	margin: 0 0 4px; letter-spacing: -0.005em;
	font-weight: 500; color: var(--ld-ink);
}
.ld-reseller-included p {
	font-size: var(--ld-fs-sm); color: var(--ld-slate);
	margin: 0; line-height: 1.5;
}

/* --- FAQ ----------------------------------------------------------- */
.ld-reseller-faq {
	max-width: 720px; margin: 0 auto;
	border-top: 1px solid var(--ld-rule);
}
.ld-reseller-faq details {
	border-bottom: 1px solid var(--ld-rule);
	padding: var(--ld-s-4) 0;
}
.ld-reseller-faq summary {
	font-family: var(--ld-serif);
	font-size: var(--ld-fs-lg);
	letter-spacing: -0.01em;
	cursor: pointer;
	list-style: none;
	display: flex; justify-content: space-between; align-items: center;
	gap: var(--ld-s-3);
	color: var(--ld-ink);
	font-weight: 500;
}
.ld-reseller-faq summary::-webkit-details-marker { display: none; }
.ld-reseller-faq summary::after {
	content: '+';
	font-family: var(--ld-serif); font-style: italic;
	color: var(--ld-crimson);
	font-size: 1.5em; line-height: 1;
	transition: transform var(--ld-d-std) var(--ld-ease);
	flex-shrink: 0;
}
.ld-reseller-faq details[open] summary::after { content: '−'; }
.ld-reseller-faq details p {
	margin: var(--ld-s-3) 0 0;
	font-size: var(--ld-fs-md);
	color: var(--ld-slate); line-height: 1.6;
	max-width: 62ch;
}

/* --- Apply section ------------------------------------------------- */
.ld-reseller-apply {
	background: var(--ld-parchment-alt, #EFEAE0);
	padding: var(--ld-s-7) 0;
	border-top: 1px solid var(--ld-rule);
}
.ld-reseller-apply__inner {
	max-width: 960px;
	margin-inline: auto;
	padding: 0 var(--ld-s-4);
}
@media (min-width: 1024px) { .ld-reseller-apply__inner { padding-inline: var(--ld-s-5); } }
.ld-reseller-apply__header { text-align: center; margin-bottom: var(--ld-s-5); }
.ld-reseller-apply__header h2 {
	font-family: var(--ld-serif);
	font-size: clamp(2rem, 2vw + 1.5rem, 3rem);
	letter-spacing: -0.02em;
	margin: var(--ld-s-3) 0 var(--ld-s-3);
	font-weight: 500;
}
.ld-reseller-apply__lede {
	font-size: var(--ld-fs-md);
	color: var(--ld-slate); line-height: 1.55;
	max-width: 58ch; margin: 0 auto;
}
.ld-reseller-apply__card {
	background: var(--ld-white);
	border: 1px solid var(--ld-rule);
	border-top: 4px solid var(--ld-crimson);
	border-radius: 8px;
	padding: var(--ld-s-5);
}
.ld-reseller-apply__card select {
	width: 100%;
	padding: 12px 14px;
	font-size: var(--ld-fs-md);
	font-family: var(--ld-sans);
	border: 1px solid var(--ld-rule-strong);
	border-radius: var(--ld-radius);
	background: var(--ld-white);
	color: var(--ld-ink);
	box-sizing: border-box;
}
.ld-reseller-apply__card select:focus {
	outline: none;
	border-color: var(--ld-crimson);
	box-shadow: 0 0 0 3px rgba(172, 31, 43, 0.12);
}
