/**
 * fonter.am redesign — Modernist design system, fonter magenta accent.
 * Rolled out gradually: currently covers the header and footer only.
 * Tokens mirror the Claude Design project "Fonter"; rgba values are
 * precomputed equivalents of the design's color-mix() expressions.
 * Typography intentionally inherits the site's existing font stack.
 * Widths come from the site's own .container, so breakpoints stay
 * identical to the rest of the site (mobile menu collapses at md,
 * like the old navbar-expand-md).
 */
:root {
	--f-text: #201e1d;
	--f-divider: #000000;
	--f-accent: #a72b8a;
	--f-accent-100: #fbf0f8;
	--f-accent-200: #f7ddef;
	--f-accent-300: #efbfe1;
	--f-accent-600: #8f1c75;
	--f-accent-700: #6f1259;
	--f-neutral-600: #7d7979;
}

/* ══════════ Header ══════════ */

/* Cuts off accidental horizontal overflow on narrow screens. Must stay "clip",
   not "hidden": hidden makes body a scroll container and kills position:sticky
   on the header. */
html, body { overflow-x: clip; }

.fonter-hdr {
	position: sticky;
	top: 0;
	z-index: 1030;
	background: #fff;
	border-bottom: 2px solid var(--f-divider);
	padding: 0;
	color: var(--f-text);
	font-size: 14px;
	line-height: 1.55;
}
.fonter-hdr-inner {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
	row-gap: 8px;
}
.fonter-hdr-logo { display: block; flex: none; margin-right: auto; padding: 5px 0; }
.fonter-hdr-logo img { height: 45px; width: auto; display: block; }

.fonter-hdr-mobile {
	display: flex;
	align-items: center;
	gap: 6px;
}
.fonter-hdr-toggler {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	background: #fff;
	color: var(--f-text);
	border: 2px solid var(--f-text);
	border-radius: 0;
	cursor: pointer;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.fonter-hdr-toggler:hover {
	transform: translate(-2px, -2px);
	box-shadow: 4px 4px 0 var(--f-text);
}
.fonter-hdr-toggler:active { transform: none; box-shadow: none; }
.fonter-hdr-toggler svg { display: block; }

.fonter-hdr-nav { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.fonter-hdr-nav > a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 15px;
	font-weight: 600;
	color: inherit;
	text-decoration: none;
	padding: 10px 0;
}
.fonter-hdr-nav > a:hover,
.fonter-hdr-nav > a[aria-current="page"] { color: var(--f-accent); }
.hdr-nav-icon { flex: none; }
@media (min-width: 767.98px) {
	/* boxed nav items with vertical dividers, like the old header */
	.fonter-hdr-logo { padding: 0 }
	.fonter-hdr-nav { gap: 0; align-self: stretch; }
	.fonter-hdr-nav > * {
		align-self: stretch;
		display: inline-flex;
		align-items: center;
		border-left: 2px solid var(--f-divider);
		padding: 6px 20px;
	}
	 .fonter-hdr-nav > a {
		padding: 6px 20px;
	 }
	.fonter-hdr-nav > :last-child { border-right: 2px solid var(--f-divider); }
	.fonter-hdr .dd-menu { left: 6px; }
}

/* hover / focus dropdowns */
.fonter-hdr .dd { position: relative; display: inline-flex; }
.fonter-hdr .dd > .dd-trigger {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	padding: 10px 0;
}
.fonter-hdr .dd:hover > .dd-trigger,
.fonter-hdr .dd:focus-within > .dd-trigger { color: var(--f-accent); }
.fonter-hdr .dd-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: -14px;
	z-index: 1040;
	min-width: 212px;
	flex-direction: column;
	background: #fff;
	border: 2px solid var(--f-text);
	box-shadow: 6px 6px 0 var(--f-text);
	padding: 4px;
}
.fonter-hdr .dd:hover > .dd-menu,
.fonter-hdr .dd:focus-within > .dd-menu { display: flex; }
.fonter-hdr .dd-menu a {
	display: block;
	padding: 9px 12px;
	font-size: 14px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.fonter-hdr .dd-menu a + a { border-top: 1px solid var(--f-divider); }
.fonter-hdr .dd-menu a:hover {
	position: relative;
	background: var(--f-accent-100);
	color: var(--f-accent-700);
	transform: translate(-2px, -2px);
	box-shadow: 3px 3px 0 var(--f-text);
}

.fonter-hdr-actions {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	row-gap: 8px;
	justify-content: flex-end;
}

.fonter-hdr .hdr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
	line-height: 1.2;
	color: var(--f-text);
	background: transparent;
	border: 2px solid transparent;
	border-radius: 0;
	min-height: 38px;
	padding: 4px 11px;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.fonter-hdr .hdr-btn svg { display: block; }
.fonter-hdr .hdr-btn:hover {
	transform: translate(-2px, -2px);
	box-shadow: 4px 4px 0 var(--f-text);
}
.fonter-hdr .hdr-btn:active { transform: none; box-shadow: none; }
.fonter-hdr .hdr-btn--primary { background: var(--f-accent); color: #fff; }
.fonter-hdr .hdr-btn--primary:hover { background: var(--f-accent-600); color: #fff; }
.fonter-hdr .hdr-btn--outline { border-color: var(--f-divider); }
.fonter-hdr .hdr-btn--support { border-color: var(--f-accent); color: var(--f-accent); }
.fonter-hdr .hdr-btn--support:hover { background: var(--f-accent-100); color: var(--f-accent-700); }
.fonter-hdr .hdr-btn--lang {
	padding: 0 9px;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
}
.fonter-hdr .hdr-flag {
	display: block;
	width: 21px;
	height: 14px;
	flex: none;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.fonter-hdr-search {
	position: relative;
	display: flex;
	align-items: center;
	flex: 0 1 150px;
	min-width: 104px;
	margin: 0;
}
.fonter-hdr-search input {
	width: 100%;
	min-width: 104px;
	min-height: 38px;
	padding: 6px 38px 6px 10px;
	font-size: 14px;
	color: var(--f-text);
	caret-color: var(--f-accent);
	background: #fff;
	border: 2px solid var(--f-divider);
	border-radius: 0;
}
.fonter-hdr-search input:hover { border-color: rgba(32, 30, 29, 0.45); }
.fonter-hdr-search input:focus { border-color: var(--f-accent); outline: none; }
.fonter-hdr-search button {
	position: absolute;
	right: 4px;
	top: 4px;
	bottom: 4px;
	width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 0;
	background: var(--f-accent);
	color: #fff;
	cursor: pointer;
	padding: 0;
}
.fonter-hdr-search button:hover { background: var(--f-accent-600); }

/* Desktop (md and up, same breakpoint the old navbar-expand-md used):
   the collapse wrapper is always visible and lays out inline. */
@media (min-width: 768px) {
	.fonter-hdr-collapse {
		display: flex !important;
		flex: 1 1 auto;
		align-items: center;
		gap: 10px;
		flex-wrap: wrap;
		row-gap: 8px;
	}
	.fonter-hdr-logo { margin-right: 0; }
	.fonter-hdr-search input { max-width: 150px; }
}

/* Mobile (below md): hamburger + stacked collapse panel, like the old
   navbar but in the new design language. Bootstrap's collapse JS
   (already in app.min.js) drives open/close. */
@media (max-width: 767.98px) {
	.fonter-hdr-collapse { flex-basis: 100%; }
	.fonter-hdr-collapse.collapsing,
	.fonter-hdr-collapse.show { margin-top: 4px; }

	.fonter-hdr-nav {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		border-top: 2px solid var(--f-text);
	}
	.fonter-hdr-nav > a {
		font-size: 15px;
		padding: 12px 2px;
		border-bottom: 1px solid var(--f-divider);
	}

	.fonter-hdr .dd { display: block; border-bottom: 1px solid var(--f-divider); }
	.fonter-hdr .dd > .dd-trigger {
		display: flex;
		width: 100%;
		justify-content: space-between;
		font-size: 15px;
		padding: 12px 2px;
	}
	/* Submenus expand in place (tap to open via focus-within) */
	.fonter-hdr .dd-menu {
		position: static;
		min-width: 0;
		border: none;
		box-shadow: none;
		padding: 0 0 10px 12px;
		border-left: 2px solid var(--f-accent-300);
		margin: 0 0 10px 2px;
	}
	.fonter-hdr .dd-menu a { padding: 9px 8px; }
	.fonter-hdr .dd-menu a:hover { transform: none; box-shadow: none; }

	.fonter-hdr-actions {
		margin: 12px 0 4px;
		width: 100%;
		justify-content: flex-start;
	}
	.fonter-hdr-actions .hdr-btn--primary { flex: 0 0 auto; }
	.fonter-hdr-search { flex: 1 1 auto; }
}

/* ══════════ Footer ══════════ */

.fonter-ftr {
	border-top: 2px solid var(--f-text);
	background: var(--f-accent);
	color: #fff;
	font-size: 15px;
	line-height: 1.55;
}
.fonter-ftr a { color: inherit; text-decoration: none; }
.fonter-ftr-grid {
	padding-top: 46px;
	padding-bottom: 38px;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
	gap: 44px;
	align-items: start;
}
.fonter-ftr-brand img { height: 26px; width: auto; display: block; }
.fonter-ftr-brand p {
	margin: 14px 0 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--f-accent-100);
	max-width: 36ch;
}
.fonter-ftr-social { display: flex; gap: 10px; margin-top: 20px; }
.fonter-ftr-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.65);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.fonter-ftr-social a:hover {
	transform: translate(-2px, -2px);
	box-shadow: 4px 4px 0 var(--f-text);
}
.fonter-ftr-social a svg { display: block; }
.fonter-ftr-col h6 {
	margin: 0 0 12px;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--f-accent-200);
}
.fonter-ftr-links {
	display: grid;
	gap: 9px;
	font-size: 13px;
	justify-items: start;
}
.fonter-ftr-links a:hover { color: var(--f-accent-200); text-decoration: underline; }

.fonter-ftr-legal p {
	margin: 0;
	padding: 18px 0 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	font-size: 12px;
	line-height: 1.65;
	color: var(--f-accent-100);
}
.fonter-ftr-legal a { text-decoration: underline; }
.fonter-ftr-legal a:hover { color: var(--f-accent-200); }

.fonter-ftr-bottom { border-top: 1px solid rgba(255, 255, 255, 0.3); }
.fonter-ftr-bottom-inner {
	padding-top: 14px;
	padding-bottom: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.fonter-ftr-bottom-inner > div {
	display: flex;
	gap: 18px;
	font-size: 13px;
	align-items: center;
	flex-wrap: wrap;
}
.fonter-ftr-bottom-inner a:hover { color: var(--f-accent-200); text-decoration: underline; }
.fonter-ftr .back-to-top {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	font-size: 13px;
	line-height: 1.2;
	min-height: 34px;
	padding: 0 11px;
	border: 1px solid rgba(255, 255, 255, 0.65);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.fonter-ftr .back-to-top:hover {
	transform: translate(-2px, -2px);
	box-shadow: 4px 4px 0 var(--f-text);
	text-decoration: none;
	color: inherit;
}
.fonter-ftr .back-to-top svg { display: block; }

@media (max-width: 991.98px) {
	.fonter-ftr-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
}
@media (max-width: 575.98px) {
	.fonter-ftr-grid { grid-template-columns: minmax(0, 1fr); padding-top: 36px; padding-bottom: 30px; }
}

/* ══════════ Support page ══════════ */

.sup-page { color: var(--f-text); font-size: 15px; line-height: 1.55; }
.sup-page h1,
.sup-page h2 { font-weight: 700; letter-spacing: -0.015em; }

.sup-kicker {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--f-accent);
	margin-bottom: 8px;
}
.sup-kicker--light { color: var(--f-accent-200); margin-bottom: 12px; }
.sup-rule { width: 100px; height: 3px; background: var(--f-accent); margin: 14px 0 12px; }
.sup-rule--light { background: var(--f-accent-200); margin: 18px 0 16px; }

/* hero */
.sup-hero { background: var(--f-accent); color: #fff; }
.sup-hero-grid {
	padding-top: 52px;
	padding-bottom: 46px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 48px;
	align-items: start;
}
.sup-hero h1 { margin: 0; font-size: 52px; line-height: 1.08; max-width: 24ch; color: #fff; }
.sup-hero-lead { margin: 0 0 8px; font-size: 17px; line-height: 1.65; color: var(--f-accent-100); max-width: 60ch; }
.sup-hero-sub { margin: 0 0 24px; font-size: 15px; line-height: 1.65; color: var(--f-accent-100); max-width: 60ch; }
.sup-hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.sup-hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	padding: 0 12px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.65);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.sup-hero-btn span { font-weight: 800; color: var(--f-accent-200); }
.sup-hero-btn:hover {
	transform: translate(-2px, -2px);
	box-shadow: 4px 4px 0 var(--f-text);
	color: #fff;
	text-decoration: none;
}
.sup-stats { border: 1px solid rgba(255, 255, 255, 0.55); }
.sup-stat { padding: 16px 18px 18px; }
.sup-stat + .sup-stat { border-top: 1px solid rgba(255, 255, 255, 0.35); }
.sup-stat-num { font-weight: 700; font-size: 38px; line-height: 1; }
.sup-stat-label {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-top: 6px;
	color: var(--f-accent-200);
}

/* numbered sections */
.sup-section { border-top: 2px solid var(--f-divider); scroll-margin-top: 12px; }
.sup-section-grid {
	padding-top: 44px;
	padding-bottom: 52px;
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	gap: 36px;
	align-items: start;
}
.sup-num {
	font-weight: 800;
	font-size: 92px;
	line-height: 0.82;
	color: var(--f-accent);
	letter-spacing: -0.03em;
}
.sup-section h2 { margin: 0; font-size: 30px; }
.sup-text { margin: 0 0 24px; font-size: 15px; line-height: 1.7; max-width: 64ch; color: rgba(32, 30, 29, 0.62); }
.sup-text strong { color: var(--f-text); }
.sup-footnote {
	margin: 22px 0 0;
	padding-top: 20px;
	border-top: 2px solid var(--f-divider);
	font-size: 13px;
	line-height: 1.7;
	max-width: 64ch;
	color: rgba(32, 30, 29, 0.62);
}
.sup-footnote--plain { border-top: none; padding-top: 0; margin-top: 20px; font-size: 14px; }
.sup-footnote a { color: var(--f-accent); }

/* payment cards */
.sup-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	align-items: stretch;
}
.sup-card {
	border: 2px solid var(--f-text);
	background: #fff;
	padding: 16px 18px 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.sup-card-label {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--f-neutral-600);
}
.sup-card-value {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 18px;
	letter-spacing: 0.02em;
	line-height: 1.35;
	word-break: break-all;
}
.sup-card-value a { color: inherit; text-decoration: none; }
.sup-card-value a:hover { color: var(--f-accent); text-decoration: underline; }
.sup-card-note { font-size: 12px; line-height: 1.5; color: rgba(32, 30, 29, 0.62); }
.sup-card-action { margin-top: auto; padding-top: 4px; }

.sup-copy-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 32px;
	padding: 0 10px;
	font-size: 12px;
	font-weight: 600;
	border: 2px solid var(--f-text);
	background: #fff;
	color: var(--f-text);
	border-radius: 0;
	cursor: pointer;
	transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.sup-copy-btn:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--f-accent); }
.sup-copy-btn:active { transform: none; box-shadow: none; }
.sup-copy-btn svg { display: block; flex: none; }

.sup-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 32px;
	padding: 0 11px;
	font-size: 12px;
	font-weight: 700;
	background: var(--f-accent);
	color: #fff;
	text-decoration: none;
	border: none;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.sup-btn-primary:hover {
	transform: translate(-2px, -2px);
	box-shadow: 4px 4px 0 var(--f-text);
	background: var(--f-accent-600);
	color: #fff;
	text-decoration: none;
}
.sup-btn-primary--lg { min-height: 38px; padding: 0 14px; font-size: 14px; }

/* banner snippet cards */
.sup-banners {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 20px;
	align-items: start;
}
.sup-banner-card {
	border: 2px solid var(--f-text);
	background: #fff;
	display: flex;
	flex-direction: column;
}
.sup-banner-preview {
	background: #eae7e7;
	border-bottom: 2px solid var(--f-text);
	padding: 24px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 132px;
	text-align: center;
}
.sup-banner-body {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
.sup-banner-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}
.sup-banner-name { font-weight: 700; font-size: 13px; }
.sup-banner-code {
	margin: 0;
	padding: 12px 14px;
	background: var(--f-accent-100);
	border: 2px solid var(--f-divider);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 11.5px;
	line-height: 1.6;
	overflow-x: auto;
	white-space: pre-wrap;
	word-break: break-word;
	color: var(--f-text);
}

/* send a font block */
.sup-sendfont {
	border: 2px solid var(--f-text);
	background: #fff;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: stretch;
}
.sup-sendfont-body {
	padding: 24px 26px 26px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}
.sup-sendfont-body p { margin: 0; font-size: 15px; line-height: 1.7; max-width: 46ch; }
.sup-sendfont-glyph {
	border-left: 2px solid var(--f-text);
	background: var(--f-accent-100);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 26px;
	min-height: 170px;
	font-weight: 800;
	font-size: 76px;
	line-height: 1;
	color: var(--f-accent);
}

/* share row */
.sup-share-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.sup-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 36px;
	padding: 0 12px;
	font-size: 14px;
	font-weight: 700;
	color: var(--f-text);
	text-decoration: none;
	border: 1px solid var(--f-divider);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.sup-share-btn:hover {
	transform: translate(-2px, -2px);
	box-shadow: 4px 4px 0 var(--f-text);
	color: var(--f-text);
	text-decoration: none;
}
.sup-share-btn svg { display: block; flex: none; }
.sup-copy-box {
	display: flex;
	align-items: center;
	border: 2px solid var(--f-text);
	background: #fff;
}
.sup-copy-box > span {
	padding: 0 12px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 13px;
	line-height: 34px;
}
.sup-copy-box button {
	display: flex;
	align-items: center;
	gap: 6px;
	min-height: 34px;
	padding: 0 12px;
	font-size: 12px;
	font-weight: 600;
	border: none;
	border-left: 2px solid var(--f-text);
	background: var(--f-accent);
	color: #fff;
	border-radius: 0;
	cursor: pointer;
}
.sup-copy-box button:hover { background: var(--f-accent-600); }

@media (max-width: 991.98px) {
	.sup-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
	.sup-stats { max-width: 340px; }
}
@media (max-width: 767.98px) {
	.sup-hero h1 { font-size: 38px; }
	.sup-hero-grid { padding-top: 38px; padding-bottom: 36px; }
	.sup-section-grid { grid-template-columns: minmax(0, 1fr); gap: 12px; padding-top: 32px; padding-bottom: 38px; }
	.sup-num { font-size: 52px; line-height: 1; }
	.sup-section h2 { font-size: 25px; }
}

/* ══════════ About page ══════════ */

.abt-page { color: var(--f-text); font-size: 15px; line-height: 1.55; }
.abt-page h1,
.abt-page h2,
.abt-page h3 { font-weight: 700; letter-spacing: -0.015em; }

.abt-breadcrumb {
	padding-top: 22px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--f-neutral-600);
}
.abt-breadcrumb a { color: inherit; text-decoration: none; }
.abt-breadcrumb a:hover { color: var(--f-accent); }
.abt-breadcrumb .abt-bc-current { color: var(--f-text); }

.abt-hero {
	padding-top: 26px;
	padding-bottom: 40px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
	gap: 56px;
	align-items: start;
}
.abt-hero h1 { margin: 0; font-size: 52px; line-height: 1.06; max-width: 22ch; }
.abt-hero .sup-rule { margin: 20px 0 18px; }
.abt-lead { margin: 0 0 16px; font-size: 18px; line-height: 1.65; max-width: 58ch; }
.abt-sub { margin: 0 0 24px; font-size: 15px; line-height: 1.7; max-width: 58ch; color: rgba(32, 30, 29, 0.62); }
.abt-hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.abt-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 38px;
	padding: 0 14px;
	font-size: 14px;
	font-weight: 700;
	color: var(--f-text);
	text-decoration: none;
	border: 1px solid var(--f-divider);
	background: transparent;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.abt-btn-secondary:hover {
	transform: translate(-2px, -2px);
	box-shadow: 4px 4px 0 var(--f-text);
	color: var(--f-text);
	text-decoration: none;
}

.abt-stats { border: 2px solid var(--f-text); background: var(--f-accent); color: #fff; }
.abt-stat { padding: 16px 20px 18px; }
.abt-stat + .abt-stat { border-top: 1px solid rgba(255, 255, 255, 0.35); }
.abt-stat-num { font-weight: 700; font-size: 38px; line-height: 1; }
.abt-stat-num--sm { font-size: 26px; line-height: 1.1; }
.abt-stat-num--sm a { color: inherit; text-decoration: none; }
.abt-stat-num--sm a:hover { text-decoration: underline; color: inherit; }
.abt-stat-label {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-top: 6px;
	color: var(--f-accent-200);
}

/* feature band */
.abt-features { border-top: 2px solid var(--f-text); background: var(--f-accent-100); }
.abt-features-grid {
	padding-top: 30px;
	padding-bottom: 32px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 28px;
}
.abt-feature { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 14px; align-items: start; }
.abt-feature-icon {
	color: var(--f-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 2px solid var(--f-accent);
	flex: none;
}
.abt-feature-title { font-weight: 700; font-size: 15px; line-height: 1.3; margin-bottom: 5px; }
.abt-feature p { margin: 0; font-size: 14px; line-height: 1.6; color: #36112b; }

/* history */
.abt-history { border-top: 2px solid var(--f-divider); scroll-margin-top: 12px; }
.abt-history-inner { padding-top: 44px; padding-bottom: 48px; }
.abt-history h2 { margin: 0; font-size: 34px; max-width: 30ch; }
.abt-history .sup-rule { margin: 16px 0 22px; }
.abt-history-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.58fr);
	gap: 48px;
	align-items: start;
}
.abt-history-grid p { margin: 0 0 16px; font-size: 16px; line-height: 1.75; }

.abt-ext-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 600;
	color: var(--f-accent-700);
	text-decoration: none;
}
.abt-ext-link:hover { color: var(--f-accent); text-decoration: underline; }
.abt-ext-link svg { display: block; flex: none; }

.abt-photo-card { border: 2px solid var(--f-text); background: #fff; }
.abt-photo-card-img {
	aspect-ratio: 4 / 3;
	border-bottom: 2px solid var(--f-text);
	background: var(--f-accent-100);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.abt-photo-card-img img { width: 100%; max-width: 180px; height: auto; display: block; }
.abt-photo-card-caption { padding: 14px 16px 16px; }
.abt-photo-card-caption .sup-card-label { color: var(--f-accent); }
.abt-photo-card-date { font-weight: 700; font-size: 17px; margin-top: 6px; }

/* timeline */
.abt-timeline-wrap { margin-top: 34px; }
.abt-timeline {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
	gap: 20px;
}
.abt-tl-item { border-top: 2px solid var(--f-text); padding-top: 12px; }
.abt-tl-date {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--f-accent);
}
.abt-tl-item p { margin: 8px 0 0; font-size: 14px; line-height: 1.65; }

/* CTA band */
.abt-cta {
	margin-top: 28px;
	border: 2px solid var(--f-text);
	background: var(--f-accent);
	color: #fff;
	padding: 22px 24px 24px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 32px;
	align-items: center;
}
.abt-cta h3 { margin: 0; font-size: 21px; line-height: 1.25; max-width: 34ch; color: #fff; }
.abt-cta p { margin: 10px 0 0; font-size: 14.5px; line-height: 1.65; max-width: 68ch; color: var(--f-accent-100); }
.abt-cta-btns { display: flex; flex-direction: column; gap: 10px; align-items: stretch; flex: none; }

/* bottom cards */
.abt-cards-section { border-top: 2px solid var(--f-divider); }
.abt-cards {
	padding-top: 42px;
	padding-bottom: 52px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 20px;
	align-items: stretch;
}
.abt-card {
	border: 2px solid var(--f-text);
	background: #fff;
	padding: 22px 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.abt-card h3 { margin: 0; font-size: 20px; line-height: 1.25; }
.abt-card p { margin: 0; font-size: 14.5px; line-height: 1.7; }
.abt-card .abt-btn-secondary { margin-top: auto; align-self: flex-start; }
.abt-card .abt-ext-link { margin-top: auto; align-self: flex-start; }

@media (max-width: 991.98px) {
	.abt-hero { grid-template-columns: minmax(0, 1fr); gap: 32px; }
	.abt-stats { max-width: 340px; }
	.abt-history-grid { grid-template-columns: minmax(0, 1fr); }
	.abt-photo-card { max-width: 380px; }
}
@media (max-width: 767.98px) {
	.abt-hero h1 { font-size: 38px; }
	.abt-history h2 { font-size: 27px; }
	.abt-cta { grid-template-columns: minmax(0, 1fr); gap: 18px; }
	.abt-cta-btns { flex-direction: row; flex-wrap: wrap; }
}

/* ══════════ Homepage hero ══════════ */

.hm-hero-section { background: #fff; color: var(--f-text); }
.hm-hero {
	padding-top: 46px;
	padding-bottom: 42px;
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
	gap: 44px;
	align-items: center;
}
.hm-hero h1 { margin: 0; font-size: 38px; font-weight: 700; letter-spacing: -0.015em; }
.hm-hero .sup-rule { margin: 16px 0 14px; }
.hm-hero-copy p { font-size: 17px; line-height: 1.65; max-width: 54ch; margin: 0 0 14px; }
.hm-hero-copy p.text-muted { font-size: 15px; line-height: 1.6; }
.hm-hero-copy a { color: var(--f-accent); }
.hm-hero-copy a:hover { color: var(--f-accent-700); }

.hm-stats {
	display: flex;
	margin: 24px 0 26px;
	border-top: 2px solid var(--f-divider);
	padding-top: 18px;
	gap: 28px;
	flex-wrap: wrap;
}
.hm-stat { flex: 1 1 180px; }
.hm-stat + .hm-stat { border-left: 2px solid var(--f-divider); padding-left: 28px; }
.hm-stat-num { font-weight: 700; font-size: 36px; line-height: 1; }
.hm-stat-label {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-top: 6px;
	color: var(--f-neutral-600);
}

.hm-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hm-search {
	position: relative;
	display: flex;
	align-items: center;
	flex: 1 1 150px;
	min-width: 124px;
	max-width: 320px;
	margin: 0;
}
.hm-search input {
	width: 100%;
	min-height: 42px;
	padding: 6px 48px 6px 12px;
	font-size: 14px;
	color: var(--f-text);
	caret-color: var(--f-accent);
	background: #fff;
	border: 1px solid var(--f-divider);
	border-radius: 0;
}
.hm-search input:hover { border-color: rgba(32, 30, 29, 0.45); }
.hm-search input:focus { border-color: var(--f-accent); outline: none; }
.hm-search button {
	position: absolute;
	right: 5px;
	top: 5px;
	bottom: 5px;
	width: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 0;
	background: var(--f-accent);
	color: #fff;
	cursor: pointer;
	padding: 0;
}
.hm-search button:hover { background: var(--f-accent-600); }

.hm-btn-primary,
.hm-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 42px;
	padding: 0 14px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 0;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.hm-btn-primary { background: var(--f-accent); color: #fff; border: 1px solid transparent; }
.hm-btn-primary:hover {
	transform: translate(-2px, -2px);
	box-shadow: 4px 4px 0 var(--f-text);
	background: var(--f-accent-600);
	color: #fff;
}
.hm-btn-secondary { color: var(--f-text); border: 1px solid var(--f-divider); background: transparent; }
.hm-btn-secondary:hover {
	transform: translate(-2px, -2px);
	box-shadow: 4px 4px 0 var(--f-text);
	color: var(--f-text);
}
.hm-btn-support { border-color: var(--f-accent); color: var(--f-accent); }
.hm-btn-support:hover { background: var(--f-accent-100); color: var(--f-accent-700); }

.hm-side { display: flex; flex-direction: column; gap: 18px; }
.hm-ad {
	position: relative;
	border: 2px solid var(--f-text);
	background: #fff;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.hm-ad:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--f-text); }
.hm-ad a { display: block; }
.hm-ad img { width: 100%; height: auto; display: block; }
.hm-ad-label {
	position: absolute;
	top: 0;
	right: 0;
	background: var(--f-text);
	color: #fff;
	font-size: 9.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	padding: 3px 7px;
}

.hm-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hm-cat {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	border: 2px solid var(--f-text);
	background: #fff;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.hm-cat:hover {
	transform: translate(-3px, -3px);
	box-shadow: 5px 5px 0 var(--f-text);
	color: inherit;
}
.hm-cat img {
	width: 100%;
	height: auto;
	display: block;
	border-bottom: 2px solid var(--f-text);
}
.hm-cat-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 9px 12px;
}
.hm-cat-foot h4 { margin: 0; font-size: 14px; font-weight: 700; line-height: 1.3; }
.hm-cat-foot svg { flex: none; }

@media (max-width: 991.98px) {
	.hm-hero { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}
@media (max-width: 767.98px) {
	/* full-width search, then the two buttons splitting the row evenly */
	.hm-cta { flex-wrap: wrap; gap: 10px; }
	.hm-search { flex: 1 0 100%; max-width: none; }
	.hm-cta .hm-btn-primary,
	.hm-cta .hm-btn-secondary {
		flex: 1 1 0;
		min-width: 0;
		justify-content: center;
	}
}
@media (max-width: 575.98px) {
	.hm-hero { padding-top: 28px; padding-bottom: 32px; }
	.hm-hero h1 { font-size: 30px; }
	.hm-stats { gap: 18px; }
	.hm-stat + .hm-stat { padding-left: 18px; }
}

/* ══════════ Shared form styles ══════════ */

.f-field label {
	display: block;
	font-size: 12px;
	margin-bottom: 5px;
	color: rgba(32, 30, 29, 0.7);
}
.f-required { color: var(--f-accent); }
.f-input {
	width: 100%;
	min-height: 40px;
	padding: 6px 12px;
	font-size: 14px;
	font-family: inherit;
	color: var(--f-text);
	caret-color: var(--f-accent);
	background: #fff;
	border: 2px solid var(--f-divider);
	border-radius: 0;
}
.f-input:hover { border-color: rgba(32, 30, 29, 0.45); }
.f-input:focus { border-color: var(--f-accent); outline: none; box-shadow: none; }
textarea.f-input { min-height: 90px; resize: vertical; }
.f-help { font-size: 12px; margin-top: 5px; color: rgba(32, 30, 29, 0.55); }
.f-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.f-submit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	font-size: 15px;
	font-weight: 700;
	background: var(--f-accent);
	color: #fff;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.f-submit:hover {
	transform: translate(-2px, -2px);
	box-shadow: 4px 4px 0 var(--f-text);
	background: var(--f-accent-600);
	color: #fff;
}
.f-submit:active { transform: none; box-shadow: none; }
.f-alert {
	border: 2px solid var(--f-text);
	padding: 12px 16px;
	font-size: 14px;
	margin-bottom: 16px;
	background: #fff;
}
.f-alert--success { background: #e9f5ee; border-color: #167a45; color: #14532d; }
.f-alert--danger { background: #fdeceb; border-color: #bf2a20; color: #7f1d1d; }
.field-error { color: #bf2a20; font-size: 13px; margin: 4px 0 0; }

@media (max-width: 575.98px) {
	.f-row-2 { grid-template-columns: minmax(0, 1fr); }
}

/* ══════════ Contact page ══════════ */

.cnt-page { color: var(--f-text); font-size: 15px; line-height: 1.55; }
.cnt-grid {
	padding-top: 40px;
	padding-bottom: 64px;
	display: grid;
	grid-template-columns: 400px minmax(0, 1fr);
	gap: 44px;
	align-items: stretch;
}
.cnt-aside {
	background: var(--f-accent);
	color: #fff;
	padding: 32px 34px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.cnt-aside h1 {
	margin: 0;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: #fff;
}
.cnt-aside-lead { margin: 0 0 18px; font-size: 15px; line-height: 1.6; color: var(--f-accent-100); }
.cnt-aside-text { margin: 0 0 12px; font-size: 14px; color: var(--f-accent-100); }
.cnt-social { display: flex; gap: 10px; flex-wrap: wrap; }
.cnt-aside-foot {
	margin: auto 0 0;
	padding-top: 28px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--f-accent-100);
}
.cnt-aside-foot a { color: inherit; text-decoration: underline; }
.cnt-aside-foot a:hover { color: var(--f-accent-200); }
.cnt-form {
	margin: 0;
	border: 2px solid var(--f-text);
	background: #fff;
	padding: 26px 28px 28px;
	display: grid;
	gap: 16px;
	align-content: start;
}
.cnt-message { min-height: 170px; }

@media (max-width: 991.98px) {
	.cnt-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; padding-top: 28px; padding-bottom: 44px; }
}

/* ══════════ Send a font page ══════════ */

.sf-page { color: var(--f-text); font-size: 15px; line-height: 1.55; }
.sf-head { padding-top: 42px; padding-bottom: 10px; }
.sf-head h1 { margin: 0; font-size: 40px; font-weight: 700; letter-spacing: -0.015em; }
.sf-intro { font-size: 15px; max-width: 62ch; margin: 0 0 16px; color: rgba(32, 30, 29, 0.62); }
.sf-body { padding-top: 12px; padding-bottom: 64px; }
.sf-form { margin: 0; }
/* design field grid: two columns, some fields span the full row */
.sf-fields-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; align-content: start; }
.sf-full { grid-column: 1 / -1; }

.sf-step {
	border-top: 2px solid var(--f-divider);
	padding: 28px 0 36px;
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 36px;
}
.sf-step-num { font-weight: 800; font-size: 34px; line-height: 1; color: var(--f-accent); }
.sf-step-head h5 { margin: 10px 0 0; font-size: 16px; font-weight: 700; }
.sf-step-body { display: grid; gap: 18px; align-content: start; }
.sf-desc { min-height: 110px; }

.sf-lics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	align-items: stretch;
}
.sf-lic {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 11px;
	border: 2px solid var(--f-text);
	background: #fff;
	padding: 12px 14px 14px;
	cursor: pointer;
	overflow: hidden;
	margin: 0;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.sf-lic:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--f-text); }
.sf-lic input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}
.sf-lic-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 30px;
}
.sf-lic-icon,
.sf-lic-check {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.sf-lic-icon { width: 30px; height: 30px; }
.sf-lic-check { width: 20px; height: 20px; visibility: hidden; }
.sf-lic:has(input:checked) { background: var(--f-accent-100); }
.sf-lic:has(input:checked) .sf-lic-check { visibility: visible; }
.sf-lic:has(input:focus-visible) { outline: 2px solid var(--f-accent); outline-offset: 2px; }
.sf-lic-name { display: block; font-weight: 700; font-size: 15.5px; line-height: 1.35; margin: 10px 0; color: #000000; }

.sf-submit-row {
	border-top: 2px solid var(--f-divider);
	padding-top: 26px;
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}
.sf-note { font-size: 13px; color: rgba(32, 30, 29, 0.62); }
.sf-note a { color: var(--f-accent); }

@media (max-width: 767.98px) {
	.sf-step { grid-template-columns: minmax(0, 1fr); gap: 14px; padding-top: 22px; padding-bottom: 28px; }
	.sf-step-head { display: flex; align-items: baseline; gap: 12px; }
	.sf-step-head h5 { margin: 0; }
	.sf-lics { grid-template-columns: minmax(0, 1fr); }
	.sf-fields-2 { grid-template-columns: minmax(0, 1fr); }
}

/* Send a font: upload box, or-divider, consent checks */
.sf-file-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: 22px;
	align-items: stretch;
}
.sf-upload {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 7px;
	border: 2px solid var(--f-text);
	background: var(--f-accent-100);
	padding: 20px 22px;
	margin: 0;
	cursor: pointer;
	color: var(--f-text);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.sf-upload:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--f-text); }
.sf-upload svg { color: var(--f-accent); }
.sf-upload-title { font-weight: 700; font-size: 15px; }
.sf-upload-note { font-size: 12.5px; color: rgba(32, 30, 29, 0.62); word-break: break-all; }
.sf-upload input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}
.sf-or {
	display: flex;
	align-items: center;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--f-neutral-600);
}
.sf-drive-field { align-self: center; }
.sf-checks { border-top: 2px solid var(--f-divider); padding-top: 24px; display: grid; gap: 11px; }
.sf-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	line-height: 1.6;
	max-width: 76ch;
	margin: 0;
	cursor: pointer;
}
.sf-check input { margin-top: 3px; accent-color: var(--f-accent); flex: none; }
.sf-submit-row { margin-top: 18px; }

@media (max-width: 767.98px) {
	.sf-file-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
	.sf-or { justify-content: center; }
}

/* ══════════ Request a change page ══════════ */

.rc-hero {
	padding-top: 26px;
	padding-bottom: 8px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 44px;
	align-items: start;
}
.rc-hero h1 { margin: 0; font-size: 38px; font-weight: 700; letter-spacing: -0.015em; }
.rc-intro { margin: 0 0 12px; font-size: 16px; line-height: 1.7; max-width: 62ch; }
.rc-intro--muted { font-size: 15px; color: rgba(32, 30, 29, 0.62); margin-bottom: 0; }
.rc-aside { background: var(--f-accent); color: #fff; padding: 26px 28px 28px; }
.rc-aside .sup-rule--light { margin: 0 0 18px; }
.rc-steps { display: grid; gap: 16px; }
.rc-step-item {
	display: grid;
	grid-template-columns: 26px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
}
.rc-step-item > span:first-child { font-weight: 800; font-size: 15px; line-height: 1.5; }
.rc-step-item > span:last-child { font-size: 14px; line-height: 1.6; color: var(--f-accent-100); }
.rc-step-item strong { color: #fff; }
.rc-aside-note {
	margin: 22px 0 0;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.35);
	font-size: 13px;
	line-height: 1.65;
	color: var(--f-accent-100);
}
.rc-aside-note a { color: inherit; text-decoration: underline; }
.rc-aside-note a:hover { color: var(--f-accent-200); }

.rc-types {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	align-items: start;
}
.rc-type {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	border: 2px solid var(--f-text);
	background: #fff;
	padding: 14px 16px;
	margin: 0;
	cursor: pointer;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.rc-type:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--f-text); }
.rc-type input { margin-top: 2px; accent-color: var(--f-accent); flex: none; }
.rc-type:has(input:checked) { background: var(--f-accent-100); }
.rc-type-title { display: block; font-weight: 700; font-size: 14.5px; }
.rc-type-note { display: block; font-size: 12.5px; line-height: 1.5; margin-top: 3px; color: rgba(32, 30, 29, 0.62); }
.rc-details { min-height: 150px; }

@media (max-width: 991.98px) {
	.rc-hero { grid-template-columns: minmax(0, 1fr); gap: 28px; }
}

/* Send a font: license notes, colored checked states, detail panels */
.sf-lic-note {
	display: block;
	font-size: 12.5px;
	line-height: 1.5;
	margin-top: -5px;
	color: rgba(32, 30, 29, 0.62);
}
.sf-lics { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (min-width: 768px) and (max-width: 991.98px) {
	.sf-lics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.sf-lic--free:has(input:checked) { background: #e7f2ec; }
.sf-lic--nc:has(input:checked) { background: #f9f2e2; }
.sf-lic--demo:has(input:checked) { background: #f9eae9; }
.sf-lic--other:has(input:checked) { background: #f0f0ef; }

.sf-panel {
	border: 2px solid var(--f-divider);
	padding: 18px 20px;
	margin-top: 16px;
	display: none;
	gap: 14px;
}
.sf-panel.active { display: grid; }
.sf-panel--free { background: #eef6f1; }
.sf-panel--nc { background: #fbf6e9; }
.sf-panel--demo { background: #fbefee; }
.sf-panel--other { background: #f4f3f3; }
.sf-panel-title {
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.sf-panel p { margin: 0; font-size: 14px; line-height: 1.7; }
.sf-panel p strong { color: var(--f-text); }
.sf-terms { min-height: 110px; }

.f-row-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px 22px; align-items: start; }
@media (max-width: 767.98px) {
	.f-row-3 { grid-template-columns: minmax(0, 1fr); }
}

/* ══════════ Contact page (redesigned) ══════════ */

.ct-hero {
	padding-top: 26px;
	padding-bottom: 10px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 44px;
	align-items: start;
}
.ct-hero h1 { margin: 0; font-size: 40px; font-weight: 700; letter-spacing: -0.015em; }
.ct-intro { font-size: 15px; max-width: 52ch; margin: 0; color: rgba(32, 30, 29, 0.62); line-height: 1.6; }
.ct-aside { background: var(--f-accent); color: #fff; padding: 22px 24px 24px; }
.ct-aside h2 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: #fff;
	max-width: 26ch;
}
.ct-aside > p { margin: 10px 0 16px; font-size: 13.5px; line-height: 1.6; color: var(--f-accent-100); max-width: 46ch; }
.ct-chans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.ct-chan {
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding: 12px 14px 13px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	color: #fff;
	text-decoration: none;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.ct-chan:hover {
	transform: translate(-3px, -3px);
	box-shadow: 5px 5px 0 #521040;
	color: #fff;
}
.ct-chan svg { display: block; }
.ct-chan-body { display: grid; gap: 2px; }
.ct-chan-title { font-weight: 700; font-size: 14px; }
.ct-chan-sub { font-size: 12px; color: var(--f-accent-200); word-break: break-all; }
.ct-topic-note { margin: 12px 0 0; font-size: 12.5px; line-height: 1.6; color: rgba(32, 30, 29, 0.62); }
.ct-topic-note a { color: var(--f-accent); }
.ct-message { min-height: 180px; }

@media (max-width: 991.98px) {
	.ct-hero { grid-template-columns: minmax(0, 1fr); gap: 28px; }
}
@media (max-width: 575.98px) {
	.ct-chans { grid-template-columns: minmax(0, 1fr); }
}

/* ══════════ Font cards (shared) ══════════ */

.fc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
}
.fc-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 991.98px) {
	.fc-grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767.98px) {
	.fc-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 479.98px) {
	.fc-grid--4 { grid-template-columns: minmax(0, 1fr); }
}
.fc-card {
	position: relative;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	border: 2px solid var(--f-text);
	background: #fff;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.fc-badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	display: inline-block;
	padding: 0 4px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 3px;
	white-space: nowrap;
	border-bottom: 3px solid #000;
	border-right: 3px solid #000;
}
.fc-badge--free { background: #1ec945; }
.fc-badge--nc { background: #05b2aa; }
.fc-card:hover {
	transform: translate(-3px, -3px);
	box-shadow: 5px 5px 0 var(--f-text);
	color: inherit;
}
.fc-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	border-bottom: 2px solid var(--f-text);
	background: #eae7e7;
}
.fc-body { display: block; padding: 10px 14px 12px; text-align: center; }
.fc-name { display: block; font-weight: 700; font-size: 16px; line-height: 1.25; }
/* three columns so the separator dot always lands dead centre */
.fc-meta {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	margin-top: 3px;
	color: var(--f-neutral-600);
}
.fc-meta-l { text-align: right; }
.fc-meta-r { text-align: left; }
.fc-meta-dot {
	width: 13px;
	height: 3px;
	border-radius: 4px;
	background: var(--f-accent);
}

/* ══════════ All fonts list ══════════ */

.fl-page { color: var(--f-text); font-size: 15px; line-height: 1.55; }
.fl-head {
	padding-top: 40px;
	padding-bottom: 18px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px 32px;
	flex-wrap: wrap;
}
.fl-head h1 { margin: 0; font-size: 38px; font-weight: 700; letter-spacing: -0.015em; max-width: 24ch; overflow-wrap: break-word; }
.fl-sub { margin: 0; font-size: 14px; line-height: 1.6; max-width: 56ch; color: rgba(32, 30, 29, 0.62); }
.fl-controls { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.fl-count {
	font-size: 14px;
	font-weight: 700;
	color: var(--f-accent);
	padding-right: 14px;
	border-right: 2px solid var(--f-divider);
	line-height: 36px;
}
.fl-controls label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--f-neutral-600);
	margin: 0;
}
.fl-controls select.f-input { width: auto; min-height: 36px; font-size: 13px; padding-top: 0; padding-bottom: 0; }

.fl-grid {
	padding-top: 10px;
	padding-bottom: 60px;
	display: grid;
	grid-template-columns: 264px minmax(0, 1fr);
	gap: 44px;
	align-items: start;
}
.fl-filter {
	position: sticky;
	top: 20px;
	border: 2px solid var(--f-text);
	background: #fff;
	padding: 18px 18px 20px;
}
.fl-filter h5 { margin: 0; font-size: 16px; font-weight: 700; }
.fl-hr { height: 2px; border: 0; margin: 12px 0 16px; background: var(--f-divider); }
.fl-fields { display: grid; gap: 5px; }
.fl-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.fl-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	font-size: 12.5px;
	font-weight: 500;
	line-height: 1;
	padding: 7px 10px;
	border: 2px solid var(--f-divider);
	background: #fff;
	color: var(--f-text);
	cursor: pointer;
	transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}
.fl-pill:hover {
	border-color: var(--f-accent);
	transform: translate(-2px, -2px);
	box-shadow: 3px 3px 0 var(--f-text);
}
.fl-pill input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}
.fl-pill svg { display: none; }
.fl-pill:has(input:checked) {
	border-color: var(--f-accent);
	background: var(--f-accent);
	color: #fff;
	font-weight: 700;
}
.fl-pill:has(input:checked) svg { display: inline-block; }
.fl-submit { width: 100%; justify-content: flex-start; margin-top: 18px; font-size: 14px; padding: 10px 14px; }

/* Filter panel colors, in the spirit of the old site */
.fl-filter { background: var(--f-accent); color: #fff; }
.fl-filter h5 { color: #fff; text-align: center; }
.fl-filter .fl-hr { background: #fff; width: 50px; margin: 12px auto 16px; }
.fl-filter .f-field > label { color: #fff; font-weight: bold; font-size: 13px; }
.fl-filter .f-input { border: 2px solid var(--f-text); }
.fl-filter .f-input:hover { border-color: var(--f-text); }
.fl-filter .f-input:focus { border-color: var(--f-text); box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.55); }
.fl-filter .fl-pill {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.65);
	color: #fff;
}
.fl-filter .fl-pill:hover { border-color: #fff; box-shadow: 3px 3px 0 var(--f-text); }
.fl-filter .fl-pill:has(input:checked) {
	background: #fff;
	border-color: #fff;
	color: var(--f-text);
}
.fl-filter .fl-pill:has(input:checked) svg { color: var(--f-accent); }
.fl-filter .fl-submit { background: #6c757d; border: 2px solid var(--f-text); justify-content: center; }
.fl-filter .fl-submit:hover { background: #5c636a; }

/* search field with the magnifier sitting inside, left of the text */
.fl-search { position: relative; display: flex; align-items: center; }
.fl-search .f-input { padding-left: 36px; }
.fl-search-icon {
	position: absolute;
	left: 12px;
	color: var(--f-text);
	pointer-events: none;
}

/* mobile: collapsible filter panel */
.fl-toggle { display: none; }
@media (max-width: 991.98px) {
	.fl-filter { padding: 0; }
	.fl-filter-title, .fl-filter .fl-hr { display: none; }
	.fl-toggle {
		display: flex;
		align-items: center;
		gap: 10px;
		width: 100%;
		padding: 14px 16px;
		border: 0;
		background: transparent;
		color: #fff;
		font-size: 15px;
		font-weight: 700;
		text-align: left;
		cursor: pointer;
	}
	.fl-toggle span { margin-right: auto; }
	.fl-toggle-caret { transition: transform 0.15s ease; }
	.fl-filter.is-open .fl-toggle-caret { transform: rotate(180deg); }
	.fl-filter-body { display: none; padding: 0 16px 18px; }
	.fl-filter.is-open .fl-filter-body { display: block; }
}
.fl-float-update {
	position: fixed;
	bottom: 18px;
	left: 18px;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	background: var(--f-accent);
	color: #fff;
	border: 2px solid var(--f-text);
	box-shadow: 4px 4px 0 var(--f-text);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.fl-float-update:hover {
	transform: translate(-2px, -2px);
	box-shadow: 6px 6px 0 var(--f-text);
	background: var(--f-accent-600);
	color: #fff;
}
.fl-float-update[hidden] { display: none; }
.fl-empty { padding: 60px 0; text-align: center; }
.fl-empty p { font-size: 20px; font-weight: 700; color: var(--f-accent); margin: 0; }

.fl-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 36px;
	flex-wrap: wrap;
}
.fl-pagination .pagination { margin: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.fl-pagination .page-item { margin: 0; }
.fl-pagination .page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 36px;
	width: auto;
	height: 36px;
	line-height: 1;
	margin: 0 !important;
	padding: 0 10px;
	border: 2px solid var(--f-text) !important;
	border-radius: 0 !important;
	color: var(--f-text);
	background: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.fl-pagination a.page-link:hover {
	transform: translate(-2px, -2px);
	box-shadow: 4px 4px 0 var(--f-text);
	color: var(--f-accent);
	z-index: 1;
}
.fl-pagination .page-item.active .page-link {
	border-color: var(--f-accent) !important;
	background: var(--f-accent);
	color: #fff;
}
/* the active item is a <span> carrying a screen-reader label; keep it the same box as the links */
.fl-pagination .page-link .visually-hidden,
.fl-pagination .page-link .sr-only { display: none; }
.fl-page-of { font-size: 13px; margin-left: 10px; color: rgba(32, 30, 29, 0.62); }

@media (max-width: 991.98px) {
	.fl-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
	.fl-filter { position: static; }
}

/* ══════════ Single font page ══════════ */

.fs-page { color: var(--f-text); font-size: 15px; line-height: 1.55; }
.fs-top {
	padding-top: 32px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
	gap: 20px 40px;
	align-items: start;
}
.fs-breadcrumb { padding-top: 0; }
.fs-title { margin-top: 18px; }
.fs-title h1 { margin: 0; font-size: 42px; font-weight: 700; letter-spacing: -0.015em; max-width: 24ch; overflow-wrap: break-word; }
.fs-byline { margin: 0; font-size: 15px; color: rgba(32, 30, 29, 0.62); }
.fs-byline strong { color: var(--f-text); }
.fs-top-side { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.fs-top-side .hm-ad { width: 100%; }
.fs-tag {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--f-accent);
	color: var(--f-accent);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 3px 10px;
}
.fs-grid {
	padding-top: 26px;
	padding-bottom: 56px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	gap: 48px;
	align-items: start;
}
.fs-specimen {
	position: relative;
	width: 100%;
	border: 2px solid var(--f-text);
	background: #f5f5f5;
	text-align: center;
	padding: 0 16px;
	overflow: hidden;
}
.fs-specimen-band {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 38.5%;
	background: #b02f93;
	z-index: 0;
}
.fs-specimen img {
	position: relative;
	z-index: 2;
	max-width: 100%;
	max-height: 400px;
	object-fit: contain;
}
.fs-about { margin-top: 30px; max-width: 100%; }
.fs-about h2 { margin: 0 0 12px; font-size: 20px; font-weight: 700; }
.fs-desc { font-size: 15px; }
.fs-desc p { margin: 0 0 12px; }
.fs-download {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	width: 100%;
	font-size: 15px;
	font-weight: 700;
	padding: 12px 16px;
	background: var(--f-accent);
	color: #fff;
	text-decoration: none;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.fs-download:hover {
	transform: translate(-2px, -2px);
	box-shadow: 4px 4px 0 var(--f-text);
	background: var(--f-accent-600);
	color: #fff;
}
.fs-buy {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	width: 100%;
	margin-top: 12px;
	font-size: 14px;
	font-weight: 700;
	padding: 11px 16px;
	border: 2px solid var(--f-text);
	color: var(--f-text);
	text-decoration: none;
	background: #fff;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.fs-buy:hover {
	transform: translate(-2px, -2px);
	box-shadow: 4px 4px 0 var(--f-text);
	color: var(--f-accent);
}
.fs-license {
	border: 2px solid var(--f-text);
	background: var(--lic-tint, #fff);
	padding: 14px 16px;
	margin-top: 14px;
}
/* the tag leads the sentence, so the box reads as one block instead of a lone chip */
.fs-license p { margin: 0; font-size: 13px; line-height: 1.6; }
.fs-license .fs-tag { float: left; margin: 1px 8px 2px 0; }
/* Licence colors (design palette) */
.fs-licvars--free { --lic-color: #0f7a3d; --lic-tint: #eaf6ee; }
.fs-licvars--nc { --lic-color: #1857a8; --lic-tint: #eaf1fa; }
.fs-licvars--commercial, .fs-licvars--unknown { --lic-color: #c0271f; --lic-tint: #fceceb; }
.fs-tag--free { border: 2px solid #0f7a3d; color: #0f7a3d; background: #eaf6ee; }
.fs-tag--nc { border: 2px solid #1857a8; color: #1857a8; background: #eaf1fa; }
.fs-tag--commercial, .fs-tag--unknown { border: 2px solid #c0271f; color: #c0271f; background: #fceceb; }
.fs-klic--free { color: #0f7a3d; }
.fs-klic--nc { color: #1857a8; }
.fs-klic--commercial, .fs-klic--unknown { color: #c0271f; }
.fs-license-more {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	clear: both;
	margin-top: 10px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--f-accent);
}
.fs-license-more:hover { color: var(--f-accent-700); gap: 8px; }

/* Download / licence modal */
.fs-dl-overlay {
	position: fixed;
	inset: 0;
	z-index: 1200;
	background: rgba(32, 30, 29, 0.58);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
}
.fs-dl-overlay[hidden] { display: none; }
.fs-dl-modal {
	width: 600px;
	max-width: 100%;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 2px solid var(--f-text);
	box-shadow: 10px 10px 0 var(--f-text);
}
.fs-dl-head {
	flex: none;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding: 15px 20px 14px;
	border-bottom: 2px solid var(--f-text);
}
.fs-dl-kicker span {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--f-accent);
}
.fs-dl-head h4 { margin: 5px 0 0; font-size: 20px; font-weight: 700; }
.fs-dl-file { font-size: 12.5px; margin-top: 4px; color: var(--f-neutral-600); }
.fs-dl-close {
	flex: none;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--f-text);
	background: #fff;
	color: var(--f-text);
	cursor: pointer;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.fs-dl-close:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--f-text); color: var(--f-accent); }
.fs-dl-body { flex: 1 1 auto; min-height: 0; overflow: auto; }
.fs-dl-prep { padding: 15px 20px 16px; border-bottom: 2px solid var(--f-divider); }
.fs-dl-prep-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	font-size: 13.5px;
	font-weight: 600;
}
.fs-dl-prep-row span:last-child { font-variant-numeric: tabular-nums; color: var(--f-accent); }
.fs-dl-bar { margin-top: 11px; height: 14px; border: 2px solid var(--f-text); background: #eae7e7; }
.fs-dl-bar div { height: 100%; width: 0%; background: var(--f-accent); transition: width 0.18s linear; }
.fs-dl-prep p { margin: 10px 0 0; font-size: 12.5px; color: var(--f-neutral-600); }
.fs-dl-ready {
	padding: 14px 20px;
	border-bottom: 2px solid var(--f-divider);
	background: var(--lic-tint);
	align-items: flex-start;
	gap: 12px;
}
.fs-dl-ready svg { flex: none; margin-top: 1px; color: var(--lic-color); }
.fs-dl-ready-title { font-weight: 700; font-size: 15px; }
.fs-dl-ready p { margin: 3px 0 0; font-size: 12.5px; color: var(--f-neutral-600); }
.fs-dl-status {
	padding: 14px 20px;
	border-bottom: 2px solid var(--f-text);
	background: var(--lic-tint);
	display: flex;
	align-items: flex-start;
	gap: 11px;
}
.fs-dl-status-icon {
	flex: none;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--lic-color);
	color: #fff;
}
.fs-dl-status-title { font-weight: 700; font-size: 14.5px; line-height: 1.3; color: var(--lic-color); }
.fs-dl-status p { margin: 5px 0 0; font-size: 12.5px; line-height: 1.55; }
.fs-dl-lic { padding: 16px 20px 18px; }
.fs-dl-lic-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fs-dl-lic-title { font-weight: 700; font-size: 14.5px; }
.fs-dl-lic-rule { width: 100px; height: 3px; background: var(--lic-color); margin: 10px 0 0; }
.fs-dl-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 14px;
	border: 2px solid var(--f-text);
}
.fs-dl-col { padding: 12px 14px 14px; display: grid; gap: 7px; font-size: 12.5px; line-height: 1.45; align-content: start; }
.fs-dl-col--may { border-right: 2px solid var(--f-text); }
.fs-dl-col--maynot { background: #fdf2f1; }
.fs-dl-col-head { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-bottom: 1px; }
.fs-dl-col--may .fs-dl-col-head { color: #0f7a3d; }
.fs-dl-col--maynot .fs-dl-col-head { color: #c0271f; }
.fs-dl-note { margin: 12px 0 0; font-size: 12px; line-height: 1.6; color: var(--f-neutral-600); }
.fs-dl-note a { color: var(--f-accent); }
.fs-dl-author { margin-top: 12px; border: 2px solid var(--f-text); background: #eae7e7; padding: 10px 14px 12px; }
.fs-dl-author-head { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.fs-dl-author-name { font-size: 13px; font-weight: 700; margin-top: 5px; }
.fs-dl-author-note { font-size: 12px; line-height: 1.5; margin-top: 2px; color: var(--f-neutral-600); }
.fs-dl-noperm { margin-top: 12px; border: 2px solid #c0271f; background: #fceceb; padding: 11px 14px 12px; }
.fs-dl-noperm div { font-weight: 700; font-size: 13px; line-height: 1.4; color: #c0271f; }
.fs-dl-noperm p { margin: 4px 0 0; font-size: 12.5px; line-height: 1.55; }
.fs-dl-foot {
	flex: none;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	border-top: 2px solid var(--f-text);
	background: #fff;
	flex-wrap: wrap;
}
.fs-dl-dlbtn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 14px;
	background: var(--f-accent);
	color: #fff;
	border: 0;
	cursor: pointer;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.fs-dl-dlbtn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--f-text); background: var(--f-accent-600); }
.fs-dl-extra {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	padding: 9px 13px;
	border: 2px solid var(--f-accent);
	color: var(--f-accent);
	background: #fff;
	text-decoration: none;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.fs-dl-extra:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--f-text); color: var(--f-accent); }
.fs-dl-ghost { border: 0; background: none; font-size: 13.5px; font-weight: 600; color: var(--f-text); cursor: pointer; padding: 9px 10px; }
.fs-dl-ghost:hover { color: var(--f-accent); }
/* modal stages */
.fs-dl-modal [data-show] { display: none; }
.fs-dl-modal[data-stage="info"] [data-show="info"] { display: block; }
.fs-dl-modal[data-stage="prep"] [data-show="prep"] { display: block; }
.fs-dl-modal[data-stage="ready"] [data-show="ready"] { display: block; }
.fs-dl-modal[data-stage="ready"] .fs-dl-ready[data-show="ready"] { display: flex; }
.fs-dl-modal[data-stage="prep"] .fs-dl-dlbtn { display: none; }
@media (max-width: 575.98px) {
	.fs-dl-overlay { padding: 14px; }
	.fs-dl-grid { grid-template-columns: minmax(0, 1fr); }
	.fs-dl-col--may { border-right: 0; border-bottom: 2px solid var(--f-text); }
}
.fs-details { margin-top: 28px; }
.fs-details h6 {
	margin: 0 0 4px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.fs-details table { width: 100%; border-collapse: collapse; font-size: 14px; }
.fs-details td { padding: 8px; border-bottom: 1px solid var(--f-divider); }
.fs-details td:first-child { width: 42%; color: rgba(32, 30, 29, 0.55); }
.fs-details td:last-child { font-weight: 600; }
.fs-details a { color: var(--f-accent); text-decoration: none; }
.fs-details a:hover { text-decoration: underline; }

.fs-band { border-top: 2px solid var(--f-divider); }
.fs-band-sub { margin: 0; font-size: 14px; line-height: 1.6; max-width: 56ch; color: rgba(32, 30, 29, 0.62); }

/* Homepage bands */
.hm-band--accent { background: var(--f-accent); }
.hm-band--accent h2 { color: #fff; }
.hm-band--accent .sup-rule { background: var(--f-accent-300); }
.hm-band--accent .fs-band-sub { color: var(--f-accent-100); }
.hm-band--accent .fs-band-sub a { color: inherit; text-decoration: underline; }
.hm-band--accent .fs-band-sub a:hover { color: var(--f-accent-200); }
.hm-band--accent .abt-btn-secondary { color: #fff; border-color: rgba(255, 255, 255, 0.65); background: transparent; }
.hm-band--accent .abt-btn-secondary:hover { color: #fff; }
.hm-band-side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.hm-updated { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--f-accent-300); }
.hm-connect { border-top: 2px solid var(--f-text); background: var(--f-accent); color: #fff; }
.hm-connect-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-top: 34px; padding-bottom: 34px; }
.hm-connect h3 { margin: 0; font-size: 22px; font-weight: 700; color: #fff; }
.hm-connect .sup-rule { background: var(--f-accent-300); margin: 12px 0 10px; }
.hm-connect p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--f-accent-100); max-width: 62ch; }
.hm-connect-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hm-connect-btns a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 14px;
	border: 1px solid rgba(255, 255, 255, 0.65);
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.hm-connect-btns a:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--f-text); color: #fff; }
.hm-colls { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.hm-coll {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 15px 16px 16px;
	border: 2px solid var(--f-text);
	background: #fff;
	text-decoration: none;
	color: inherit;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.hm-coll:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--f-text); border-color: var(--f-accent); color: inherit; }
.hm-coll-name { font-weight: 700; font-size: 16px; line-height: 1.25; }
.hm-coll-meta { font-size: 12px; color: var(--f-neutral-600); }
.fs-band-inner { padding-top: 42px; padding-bottom: 60px; }
.fs-band-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 26px;
	flex-wrap: wrap;
}
.fs-band-head h2 { margin: 0; font-size: 32px; font-weight: 700; letter-spacing: -0.015em; }
.fs-page .fs-band-head .sup-rule { margin-bottom: 0; }

@media (max-width: 991.98px) {
	.fs-top { grid-template-columns: minmax(0, 1fr); }
	.fs-top-side { align-items: flex-start; }
	.fs-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
	.fs-title h1 { font-size: 32px; }
}

/* ══════════ Article page ══════════ */

.art-page { color: var(--f-text); font-size: 15px; line-height: 1.55; }
.art-head { padding-top: 26px; }
.art-head h1 { margin: 0; font-size: 42px; font-weight: 700; letter-spacing: -0.015em; max-width: 30ch; }
.art-kickers { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.art-tag {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	letter-spacing: 0.02em;
	padding: 3px 10px;
	background: var(--f-accent-100);
	color: var(--f-accent-700);
	text-decoration: none;
}
.art-tag:hover { background: var(--f-accent-200); color: var(--f-accent-700); }
.art-tag--outline { background: transparent; border: 1px solid var(--f-accent); color: var(--f-accent); }
.art-tag--outline:hover { background: var(--f-accent-100); }
.art-kicker-label {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--f-accent);
}
.art-lead { margin: 0 0 22px; font-size: 17px; line-height: 1.65; max-width: 62ch; color: rgba(32, 30, 29, 0.62); }
.art-meta {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	padding: 14px 0;
	border-top: 2px solid var(--f-divider);
	border-bottom: 2px solid var(--f-divider);
	font-size: 13px;
	color: var(--f-neutral-600);
}
.art-grid {
	padding-top: 30px;
	padding-bottom: 56px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 264px;
	gap: 48px;
	align-items: start;
}
.art-main { max-width: 68ch; }
.art-ad { margin-bottom: 16px; text-align: center; }
.art-hero-img { width: 100%; height: auto; display: block; border: 2px solid var(--f-text); margin-bottom: 22px; }

.art-content { font-size: 16px; line-height: 1.75; }
.art-content p { margin: 0 0 18px; }
.art-content h2 { font-size: 25px; font-weight: 700; margin: 34px 0 14px; scroll-margin-top: 24px; }
.art-content h3 { font-size: 18px; font-weight: 700; margin: 26px 0 10px; scroll-margin-top: 24px; }
.art-content img {
	max-width: 100%;
	max-height: 70vh;
	object-fit: contain;
	height: auto !important;
	margin: 1rem 0;
	border-radius: 0 !important;
	display: block;
	object-position: left;
}
.art-content pre {
	background: var(--f-accent-100);
	border: 2px solid var(--f-divider);
	padding: 1rem;
	border-radius: 0 !important;
	overflow-x: auto;
}
.art-content blockquote {
	border-left: 3px solid var(--f-accent);
	padding-left: 1rem;
	margin: 1rem 0;
	font-style: italic;
}
.art-content a { color: var(--f-accent); }
.art-content a:hover { color: var(--f-accent-700); }

.art-terms {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	border-top: 2px solid var(--f-divider);
	margin-top: 30px;
	padding-top: 20px;
}

.art-aside { position: sticky; top: 20px; display: grid; gap: 20px; }
.art-toc { border: 2px solid var(--f-text); background: #fff; padding: 16px 18px 18px; }
.art-toc h5 { margin: 0; font-size: 16px; font-weight: 700; }
.art-toc-list a {
	display: block;
	padding: 8px 0;
	font-size: 13px;
	line-height: 1.5;
	color: inherit;
	text-decoration: none;
}
.art-toc-list a:hover { color: var(--f-accent); }
.art-toc-list a + a { border-top: 1px solid rgba(32, 30, 29, 0.15); }
.art-toc-list .art-toc-sub { padding-left: 14px; }
.art-share { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.art-share > span { font-size: 12px; color: var(--f-neutral-600); margin-right: 2px; }
.art-share a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 2px solid var(--f-text);
	color: var(--f-text);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.art-share a:hover {
	transform: translate(-2px, -2px);
	box-shadow: 3px 3px 0 var(--f-text);
	color: var(--f-accent);
}
.art-cta {
	border: 2px solid var(--f-text);
	background: var(--f-accent);
	color: #fff;
	padding: 20px;
}
.art-cta-kicker {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--f-accent-200);
	margin-bottom: 8px;
}
.art-cta-title { font-weight: 700; font-size: 19px; line-height: 1.25; margin-bottom: 10px; }
.art-cta p { margin: 0 0 16px; font-size: 13px; line-height: 1.6; color: var(--f-accent-100); }

.art-related { border-top: 2px solid var(--f-divider); }
.art-related-inner { padding-top: 42px; padding-bottom: 56px; }
.art-related h2 { margin: 0; font-size: 32px; font-weight: 700; letter-spacing: -0.015em; }
.art-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 26px;
}
.art-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	border: 2px solid var(--f-text);
	background: #fff;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.art-card:hover {
	transform: translate(-3px, -3px);
	box-shadow: 5px 5px 0 var(--f-text);
	color: inherit;
}
.art-card-img,
.art-card-letter {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--f-accent-100);
	border-bottom: 2px solid var(--f-text);
	aspect-ratio: 16 / 8;
	overflow: hidden;
}
.art-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.art-card-letter { font-weight: 800; font-size: 52px; line-height: 1; color: var(--f-accent); }
.art-card-body {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.art-card-body .art-tag--outline { align-self: flex-start; }
.art-card-title { font-weight: 700; font-size: 17px; line-height: 1.3; }
.art-card-meta { margin-top: auto; padding-top: 6px; font-size: 12px; color: var(--f-neutral-600); }

@media (max-width: 991.98px) {
	.art-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
	.art-aside { position: static; }
	.art-head h1 { font-size: 30px; }
}


/* Long TOCs scroll inside the sticky aside */
.art-aside { max-height: calc(100vh - 40px); overflow-y: auto; }
@media (max-width: 991.98px) {
	.art-aside { max-height: none; overflow-y: visible; }
}
