/* ==========================================================================
   components.css — buttons, kicker labels, hair-rule dividers, pull quotes,
   drop caps, mono-stats table, CTAs. No shadows, no gradients, no glow.
   ========================================================================== */

/* --- Primary button: ember fill + Spectral ITALIC (editorial character) --- */
.btn-primary {
	display: inline-block;
	background: var(--c-accent);
	color: var(--c-bg);
	border: none;
	border-radius: var(--r-sm);
	padding: var(--s-12) var(--s-24);
	font-family: var(--f-heading);
	font-style: italic;
	font-weight: 500;
	font-size: 0.9375rem;
	letter-spacing: 0.3px;
	text-decoration: none;
	cursor: pointer;
	transition: background-color var(--dur) var(--ease);
	line-height: 1.4;
}

.btn-primary:hover,
.btn-primary:focus-visible {
	background: var(--c-accent-hover);
	color: var(--c-bg);
	text-decoration: none;
}

.btn-primary[disabled],
.btn-primary.is-loading {
	opacity: 0.6;
	cursor: wait;
}

/* --- Secondary button: ghost outline --- */
.btn-secondary {
	display: inline-block;
	background: transparent;
	color: var(--c-text);
	border: 1px solid var(--c-border);
	border-radius: var(--r-sm);
	padding: var(--s-12) var(--s-24);
	font-family: var(--f-body);
	font-weight: 500;
	font-size: 0.9375rem;
	letter-spacing: 0.3px;
	text-decoration: none;
	cursor: pointer;
	transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
	line-height: 1.4;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
	border-color: var(--c-accent);
	color: var(--c-accent);
	text-decoration: none;
}

/* --- Tertiary / text link --- */
.btn-tertiary {
	display: inline-flex;
	align-items: center;
	gap: var(--s-8);
	font-family: var(--f-body);
	font-weight: 500;
	font-size: 0.9375rem;
	color: var(--c-accent);
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 1px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

.btn-tertiary:hover,
.btn-tertiary:focus-visible {
	text-decoration-thickness: 2px;
	color: var(--c-accent-hover);
}

.btn-tertiary::after {
	content: "\2192";
	font-family: var(--f-mono);
	font-weight: 400;
	transition: transform var(--dur) var(--ease);
}

.btn-tertiary:hover::after {
	transform: translateX(3px);
}

/* --- Google Play official badge --- */
.btn-google-play {
	display: inline-block;
	line-height: 0;
}

.btn-google-play img {
	height: 56px;
	width: auto;
	display: block;
}

.btn-google-play--lg img {
	height: 72px;
}

@media (max-width: 767px) {
	.btn-google-play img {
		height: 48px;
	}
	.btn-google-play--lg img {
		height: 60px;
	}
}

/* --- CTA group --- */
.cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-16);
	align-items: center;
}

/* --- Kicker labels --- */
.kicker {
	font-family: var(--f-body);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--c-accent);
	margin-bottom: var(--s-12);
	display: block;
}

.kicker--moss {
	color: var(--c-accent-sec);
}

/* --- Hair-rule divider with pixel-glyph --- */
.hair-rule {
	display: flex;
	align-items: center;
	gap: var(--s-16);
	margin: var(--s-48) auto;
	color: var(--c-border);
}

.hair-rule::before,
.hair-rule::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--c-border);
}

.hair-rule__glyph {
	font-family: var(--f-mono);
	font-size: 0.75rem;
	color: var(--c-accent);
	flex: 0 0 auto;
}

.hair-rule--text {
	font-family: var(--f-heading);
	font-style: italic;
	font-size: 0.875rem;
	color: var(--c-text-dim);
	letter-spacing: 0.5px;
}

.hair-rule--text .hair-rule__glyph {
	color: var(--c-text-dim);
	font-family: var(--f-heading);
	font-style: italic;
	font-size: 0.875rem;
	white-space: nowrap;
}

/* --- Pull quote (editorial) --- */
.pull-quote {
	font-family: var(--f-heading);
	font-style: italic;
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1.4;
	color: var(--c-text);
	border-left: 2px solid var(--c-accent);
	padding-left: var(--s-24);
	margin: var(--s-48) auto;
	max-width: 640px;
}

.pull-quote--sm {
	font-size: 1.25rem;
	margin: var(--s-32) 0;
}

.pull-quote__cite {
	display: block;
	font-family: var(--f-body);
	font-style: normal;
	font-weight: 400;
	font-size: 0.8125rem;
	color: var(--c-text-dim);
	margin-top: var(--s-12);
	letter-spacing: 0.3px;
}

/* --- Drop cap (first-letter on first paragraph of long-form) --- */
.drop-cap::first-letter {
	font-family: var(--f-heading);
	font-weight: 500;
	font-size: 3.5rem;
	line-height: 0.9;
	float: left;
	padding-top: 4px;
	padding-right: 8px;
	color: var(--c-accent);
}

/* --- Mono stats table --- */
.stats-table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--f-mono);
	font-size: 0.875rem;
	margin: var(--s-32) 0;
}

.stats-table th,
.stats-table td {
	padding: var(--s-12) var(--s-16);
	border-bottom: 1px solid var(--c-border);
	text-align: left;
	font-weight: 400;
}

.stats-table th {
	color: var(--c-text-dim);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.75rem;
	border-bottom: 1px solid var(--c-accent);
}

.stats-table td {
	color: var(--c-text);
	font-variant-numeric: tabular-nums;
}

.stats-table tr:first-child td {
	border-top: 1px solid var(--c-border);
}

.stats-table--two-col th:first-child,
.stats-table--two-col td:first-child {
	width: 40%;
	color: var(--c-text-dim);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.75rem;
}

/* --- Inline mono-meta list (definition-list) --- */
.mono-meta {
	font-family: var(--f-mono);
	font-size: 0.8125rem;
	margin: 0;
}

.mono-meta dt {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.6875rem;
	color: var(--c-text-dim);
	margin-top: var(--s-8);
}

.mono-meta dt:first-child {
	margin-top: 0;
}

.mono-meta dd {
	margin: 2px 0 0;
	color: var(--c-text);
	font-variant-numeric: tabular-nums;
}

/* --- Alerts --- */
.alert {
	padding: var(--s-16) var(--s-24);
	border-radius: var(--r-sm);
	border: 1px solid var(--c-border);
	margin-bottom: var(--s-24);
	font-size: 0.9375rem;
	line-height: 1.5;
}

.alert--success {
	border-color: var(--c-success);
	color: var(--c-success);
}

.alert--error {
	border-color: var(--c-error);
	color: var(--c-error);
}

/* --- Attribution block (used in footer + legal pages) --- */
.attribution-block {
	font-family: var(--f-body);
	font-size: 0.8125rem;
	line-height: 1.6;
	color: var(--c-text-dim);
	padding: var(--s-24) 0;
	border-top: 1px solid var(--c-border);
	border-bottom: 1px solid var(--c-border);
	margin: var(--s-32) 0;
}

.attribution-block strong {
	color: var(--c-text);
	font-weight: 500;
}

.attribution-block a {
	color: var(--c-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* --- SVG icon baseline --- */
.icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	fill: currentColor;
}

.icon--lg {
	width: 32px;
	height: 32px;
}

/* --- reCAPTCHA branding (badge hidden by CSS, text attribution visible) --- */
.grecaptcha-badge {
	visibility: hidden !important;
}

.recaptcha-attribution {
	margin-top: var(--s-16);
	font-size: 0.75rem;
	color: var(--c-text-dim);
	line-height: 1.5;
}

.recaptcha-attribution a {
	color: var(--c-text-dim);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.recaptcha-attribution a:hover {
	color: var(--c-accent);
}
