/*
 * IPTV Pro — interaction, motion and component layer.
 *
 * theme.json owns the design tokens; this file owns the things a block theme
 * cannot express there: the EPG rail, the skewed eyebrow, card components,
 * and the one orchestrated page-load.
 *
 * Entrance hiding is gated behind `.ip-js` so the page is fully visible when
 * JavaScript is unavailable, and every animation is disabled under
 * prefers-reduced-motion (Blueprint §1, "Motion").
 */

/* ---------------------------------------------------------------------------
 * 1. Foundations
 * ------------------------------------------------------------------------ */

html {
	scroll-behavior: smooth;
}

/* Stack header / sections / footer flush — no blockGap strips between them. */
.wp-site-blocks > * + * {
	margin-block-start: 0;
}

/*
 * Urbanist is a weight-only variable font — it has no width axis, so there is
 * no font-stretch/font-variation-settings block here. Heading weight, line
 * height and tracking all come from theme.json.
 */

/*
 * Focus ring: 2px Pro Orange with a 2px offset. Passes 3:1 non-text contrast on
 * BOTH the cream and the ink-900 grounds, which is why it is a single rule
 * rather than a per-surface override.
 */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline: 2px solid var(--wp--preset--color--orange);
	outline-offset: 2px;
	border-radius: 2px;
}

.ip-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ---------------------------------------------------------------------------
 * 2. The eyebrow — the ONLY place the logo's -11deg slant is reused in type
 * ------------------------------------------------------------------------ */

/*
 * Blueprint §1: apply the skew to eyebrow labels and the live badge only.
 * Never to body copy or headings — the logo already carries that gesture, and
 * repeating it at paragraph scale makes the page look broken rather than
 * branded. The inner span counter-skews so the letterforms stay upright.
 */
.ip-eyebrow {
	display: inline-block;
	transform: skewX(var(--wp--custom--skew, -11deg));
	background: var(--wp--preset--color--orange);
	color: var(--wp--preset--color--ink);
	font-family: var(--wp--preset--font-family--urbanist);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 7px 14px;
	margin-bottom: 1.25rem;
}

.ip-eyebrow > span {
	display: inline-block;
	transform: skewX(11deg);
}

/* Quiet variant for dark grounds where an orange block would compete. */
.ip-eyebrow--ghost {
	background: transparent;
	color: var(--wp--preset--color--orange-lift);
	border: 1px solid var(--wp--preset--color--ink-600);
	padding: 6px 13px;
}

/* ---------------------------------------------------------------------------
 * 3. Grounds
 * ------------------------------------------------------------------------ */

.ip-dark {
	background: var(--wp--preset--color--ink-900);
	color: var(--wp--preset--color--cream);
}

.ip-dark :is(h1, h2, h3, h4, h5) {
	color: var(--wp--preset--color--cream);
}

.ip-dark h6 {
	color: var(--wp--preset--color--ink-300);
}

/*
 * Orange text on a dark ground must be the lifted tint (7.90:1 on ink-900),
 * never --pro-orange itself. On light grounds links already resolve to
 * --orange-deep (4.70:1 on cream) via theme.json.
 */
.ip-dark a:not(.wp-element-button) {
	color: var(--wp--preset--color--orange-lift);
}

.ip-dark a:not(.wp-element-button):hover {
	color: var(--wp--preset--color--cream);
}

.ip-divide {
	border-top: 1px solid var(--wp--preset--color--paper-200);
}

.ip-dark.ip-divide,
.ip-dark + .ip-dark.ip-divide {
	border-top-color: var(--wp--preset--color--ink-600);
}

.ip-muted {
	color: var(--wp--preset--color--ink-300);
}

/* ---------------------------------------------------------------------------
 * 4. Header
 * ------------------------------------------------------------------------ */

.wp-site-blocks > header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--wp--preset--color--cream);
	border-bottom: 1px solid var(--wp--preset--color--paper-200);
}

.ip-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--wp--preset--spacing--40);
	flex-wrap: wrap;
}

.ip-logo-link {
	display: block;
	line-height: 0;
}

.ip-logo-link img {
	display: block;
	width: 132px;
	max-width: 42vw;
	height: auto;
}

.wp-site-blocks > header .wp-block-navigation {
	font-size: var(--wp--preset--font-size--small);
	font-weight: 500;
}

.wp-site-blocks > header .wp-block-navigation a {
	color: var(--wp--preset--color--ink);
	text-decoration: none;
}

.wp-site-blocks > header .wp-block-navigation a:hover {
	color: var(--wp--preset--color--orange-deep);
}

/* ---------------------------------------------------------------------------
 * 5. The EPG rail — the site's one signature element
 * ------------------------------------------------------------------------ */

/*
 * Blueprint §1: this appears three times only — hero visual, major section
 * divider, and the pricing table's row structure. The grid is deliberately
 * neutral so the single orange cell carries all the weight. Do not add a
 * second signature.
 */
.ip-epg {
	display: block;
	width: 100%;
	height: auto;
	max-width: 960px;
	margin-inline: auto;
	border-radius: 12px;
	background: var(--wp--preset--color--ink-900);
}

.ip-epg-live {
	filter: drop-shadow(0 0 18px rgba(255, 100, 5, 0.35));
}

/* Entrance state — only when JS is present to remove it. */
.ip-js .ip-epg-row {
	opacity: 0;
	transform: translateX(-14px);
}

.ip-epg.is-revealed .ip-epg-row {
	opacity: 1;
	transform: none;
	transition: opacity 320ms ease-out, transform 320ms ease-out;
	/* 40ms stagger, left to right, driven by the data-row index. */
	transition-delay: calc(var(--ip-row, 0) * 40ms);
}

/* ---------------------------------------------------------------------------
 * 6. Icons and illustrations
 * ------------------------------------------------------------------------ */

.ip-icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
	vertical-align: -0.3em;
	color: var(--wp--preset--color--orange-deep);
}

.ip-dark .ip-icon {
	color: var(--wp--preset--color--orange-lift);
}

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

.ip-illus {
	display: block;
	width: 100%;
	height: auto;
	max-width: 480px;
	border-radius: 10px;
	background: var(--wp--preset--color--ink-900);
}

/* ---------------------------------------------------------------------------
 * 7. Cards and grids
 * ------------------------------------------------------------------------ */

.ip-grid {
	display: grid;
	gap: var(--wp--preset--spacing--40);
}

.ip-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.ip-grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.ip-grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.ip-card {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-200);
	border-radius: 12px;
	padding: var(--wp--preset--spacing--40);
}

.ip-card h3 {
	margin-top: 0.6rem;
	font-size: var(--wp--preset--font-size--h6);
}

.ip-card p:last-child {
	margin-bottom: 0;
}

.ip-dark .ip-card {
	background: var(--wp--preset--color--ink-800);
	border-color: var(--wp--preset--color--ink-600);
}

/* Device strip — links laterally across the cluster (Blueprint §2 crawl rule). */
.ip-devices {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
	gap: var(--wp--preset--spacing--30);
	list-style: none;
	margin: 0;
	padding: 0;
}

.ip-device {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
	padding: 1.15rem 0.5rem;
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-200);
	border-radius: 10px;
	text-decoration: none;
	color: var(--wp--preset--color--ink);
	transition: border-color 160ms ease-out, transform 160ms ease-out;
}

.ip-device:hover {
	border-color: var(--wp--preset--color--orange);
	transform: translateY(-2px);
	color: var(--wp--preset--color--ink);
}

.ip-device span {
	font-family: var(--wp--preset--font-family--urbanist);
	font-size: 11px;
	letter-spacing: 0.03em;
	text-align: center;
	color: #6E6058;
}

.ip-dark .ip-device {
	background: var(--wp--preset--color--ink-800);
	border-color: var(--wp--preset--color--ink-600);
	color: var(--wp--preset--color--cream);
}

.ip-dark .ip-device span {
	color: var(--wp--preset--color--ink-300);
}

/* ---------------------------------------------------------------------------
 * 8. The answer block — AEO's highest-leverage element
 * ------------------------------------------------------------------------ */

/*
 * Blueprint §4.2, rule 1: every page opens with a 40-60 word direct answer
 * immediately under the H1. This is the block that wins featured snippets and
 * gets quoted verbatim by answer engines, so it is styled to be unmissable and
 * kept structurally self-contained (no "as mentioned above" anaphora).
 */
.ip-answer {
	background: var(--wp--custom--orange-wash, rgba(255, 100, 5, 0.1));
	border-left: 3px solid var(--wp--preset--color--orange);
	border-radius: 0 8px 8px 0;
	padding: var(--wp--preset--spacing--40);
	margin-block: var(--wp--preset--spacing--40);
	font-size: var(--wp--preset--font-size--h6);
	font-weight: 500;
	line-height: 1.55;
}

.ip-answer p:last-child {
	margin-bottom: 0;
}

.ip-dark .ip-answer {
	background: rgba(255, 100, 5, 0.14);
}

/* ---------------------------------------------------------------------------
 * 9. Steps
 * ------------------------------------------------------------------------ */

/*
 * Numbering is used ONLY where the content genuinely is a sequence
 * (install steps, onboarding). Feature lists stay unnumbered.
 */
.ip-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--wp--preset--spacing--40);
}

.ip-step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--wp--preset--spacing--40);
	align-items: start;
}

.ip-step__num {
	font-family: var(--wp--preset--font-family--urbanist);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 500;
	color: var(--wp--preset--color--ink);
	background: var(--wp--preset--color--orange);
	border-radius: 6px;
	width: 2.25rem;
	height: 2.25rem;
	display: grid;
	place-items: center;
}

.ip-step h3 {
	margin: 0 0 0.35rem;
	font-size: var(--wp--preset--font-size--h6);
}

.ip-step p {
	margin: 0;
}

/* ---------------------------------------------------------------------------
 * 10. Pricing — rows structured as EPG cells (signature reuse)
 * ------------------------------------------------------------------------ */

.ip-price-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--wp--preset--spacing--40);
	align-items: stretch;
}

.ip-price {
	display: flex;
	flex-direction: column;
	background: var(--wp--preset--color--ink-800);
	border: 1px solid var(--wp--preset--color--ink-600);
	border-radius: 12px;
	padding: var(--wp--preset--spacing--50);
	color: var(--wp--preset--color--cream);
}

.ip-price--featured {
	border-color: var(--wp--preset--color--orange);
	box-shadow: 0 0 0 1px var(--wp--preset--color--orange);
}

.ip-price__name {
	font-family: var(--wp--preset--font-family--urbanist);
	font-size: var(--wp--preset--font-size--small);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ink-300);
	margin: 0 0 0.9rem;
}

.ip-price__amount {
	font-family: var(--wp--preset--font-family--urbanist);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--x-large);
	line-height: 1;
	color: var(--wp--preset--color--cream);
}

.ip-price__per {
	font-family: var(--wp--preset--font-family--urbanist);
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--ink-300);
}

.ip-price ul {
	list-style: none;
	margin: var(--wp--preset--spacing--40) 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
	font-size: var(--wp--preset--font-size--small);
}

.ip-price li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.65rem;
	align-items: start;
}

.ip-price li .ip-icon {
	width: 18px;
	height: 18px;
	margin-top: 0.15rem;
}

.ip-price li[data-state="no"] {
	color: var(--wp--preset--color--ink-300);
}

.ip-price li[data-state="no"] .ip-icon {
	color: var(--wp--preset--color--ink-600);
}

.ip-price .wp-block-buttons {
	margin-top: auto;
}

/* ---------------------------------------------------------------------------
 * 11. Scope notice — the merchant-account defence (Blueprint §3.5 §5)
 * ------------------------------------------------------------------------ */

.ip-scope {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--wp--preset--spacing--40);
	border: 1px solid var(--wp--preset--color--paper-200);
	border-radius: 12px;
	padding: var(--wp--preset--spacing--50);
	background: #fff;
}

.ip-scope ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
	font-size: var(--wp--preset--font-size--small);
}

.ip-scope li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.65rem;
	align-items: start;
}

.ip-scope h3 {
	margin: 0 0 0.9rem;
	font-size: var(--wp--preset--font-size--h6);
}

/* ---------------------------------------------------------------------------
 * 12. Tables — answer engines lift these intact, so they must survive mobile
 * ------------------------------------------------------------------------ */

.ip-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--wp--preset--color--paper-200);
	border-radius: 10px;
}

.ip-table-wrap table,
.wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--wp--preset--font-size--small);
}

.ip-table-wrap th,
.ip-table-wrap td,
.wp-block-table th,
.wp-block-table td {
	text-align: left;
	padding: 0.75rem 0.95rem;
	border-bottom: 1px solid var(--wp--preset--color--paper-200);
}

.ip-table-wrap th,
.wp-block-table th {
	font-family: var(--wp--preset--font-family--urbanist);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: var(--wp--custom--orange-wash, rgba(255, 100, 5, 0.1));
}

.ip-table-wrap tbody tr:last-child td {
	border-bottom: 0;
}

/* Monospace anything that is a number, version, size or timecode. */
.ip-num {
	font-family: var(--wp--preset--font-family--urbanist);
	font-variant-numeric: tabular-nums;
}

/* ---------------------------------------------------------------------------
 * 13. FAQ accordions
 * ------------------------------------------------------------------------ */

.ip-faq {
	border-bottom: 1px solid var(--wp--preset--color--paper-200);
	padding: 0.35rem 0;
}

.ip-faq > summary {
	cursor: pointer;
	list-style: none;
	padding: 1rem 2.25rem 1rem 0;
	position: relative;
	font-weight: 600;
	font-size: var(--wp--preset--font-size--h6);
	font-family: var(--wp--preset--font-family--hanken);
}

.ip-faq > summary::-webkit-details-marker {
	display: none;
}

/* Chevron only — no icon set on the FAQ block (Blueprint §3.1). */
.ip-faq > summary::after {
	content: "";
	position: absolute;
	right: 0.35rem;
	top: 1.45rem;
	width: 0.55rem;
	height: 0.55rem;
	border-right: 2px solid var(--wp--preset--color--orange-deep);
	border-bottom: 2px solid var(--wp--preset--color--orange-deep);
	transform: rotate(45deg);
	transition: transform 180ms ease-out;
}

.ip-faq[open] > summary::after {
	transform: rotate(-135deg);
}

.ip-faq > p {
	margin: 0 0 1rem;
	max-width: 66ch;
}

.ip-dark .ip-faq {
	border-bottom-color: var(--wp--preset--color--ink-600);
}

.ip-dark .ip-faq > summary::after {
	border-color: var(--wp--preset--color--orange-lift);
}

/* ---------------------------------------------------------------------------
 * 14. Compliance notice — non-negotiable, kept visually distinct
 * ------------------------------------------------------------------------ */

.ip-compliance {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--wp--preset--spacing--40);
	align-items: start;
	border: 1px solid var(--wp--preset--color--ink-600);
	border-radius: 12px;
	padding: var(--wp--preset--spacing--40);
	background: var(--wp--preset--color--ink-800);
	color: var(--wp--preset--color--cream);
}

.ip-compliance h2,
.ip-compliance h3 {
	margin: 0 0 0.5rem;
	font-size: var(--wp--preset--font-size--h6);
	color: var(--wp--preset--color--cream);
}

.ip-compliance p {
	margin: 0;
	color: var(--wp--preset--color--ink-300);
	font-size: var(--wp--preset--font-size--small);
}

.ip-compliance .ip-icon {
	color: var(--wp--preset--color--orange-lift);
}

/* ---------------------------------------------------------------------------
 * 15. Editorial (guides and blog)
 * ------------------------------------------------------------------------ */

.ip-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: var(--wp--preset--font-family--urbanist);
	font-size: var(--wp--preset--font-size--small);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6E6058;
}

.ip-crumb + .ip-crumb::before {
	content: "/";
	margin-right: 0.5rem;
	color: var(--wp--preset--color--paper-200);
}

.ip-breadcrumbs a {
	color: #6E6058;
	text-decoration: none;
}

.ip-breadcrumbs a:hover {
	color: var(--wp--preset--color--orange-deep);
}

.ip-meta {
	font-family: var(--wp--preset--font-family--urbanist);
	font-size: var(--wp--preset--font-size--small);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #6E6058;
	margin: 0;
}

.ip-takeaways {
	border: 1px solid var(--wp--preset--color--paper-200);
	border-left: 3px solid var(--wp--preset--color--orange);
	border-radius: 0 10px 10px 0;
	padding: var(--wp--preset--spacing--40);
	margin-block: var(--wp--preset--spacing--50);
	background: #fff;
}

.ip-takeaways__heading {
	font-family: var(--wp--preset--font-family--urbanist);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 0.85rem;
}

.ip-takeaways ul {
	margin: 0;
	padding-left: 1.15rem;
	display: grid;
	gap: 0.45rem;
	font-size: var(--wp--preset--font-size--small);
}

.ip-prose > * {
	max-width: 66ch;
}

.ip-prose > .wp-block-table,
.ip-prose > .ip-table-wrap,
.ip-prose > figure {
	max-width: none;
}

/* ---------------------------------------------------------------------------
 * 16. Testimonials
 * ------------------------------------------------------------------------ */

/*
 * Screenshot testimonials supplied by the owner. No Review or AggregateRating
 * structured data is emitted for these — do not add any until each review is
 * verifiably genuine and published with permission.
 */
.ip-shots {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: var(--wp--preset--spacing--30);
	list-style: none;
	margin: 0;
	padding: 0;
}

.ip-shots li {
	margin: 0;
}

.ip-shots img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
	border: 1px solid var(--wp--preset--color--paper-200);
	background: #fff;
}

/* ---------------------------------------------------------------------------
 * 17. Footer
 * ------------------------------------------------------------------------ */

.wp-site-blocks > footer {
	background: var(--wp--preset--color--ink-900);
	color: var(--wp--preset--color--cream);
}

.wp-site-blocks > footer h2,
.wp-site-blocks > footer h3 {
	color: var(--wp--preset--color--cream);
	font-size: var(--wp--preset--font-size--small);
	font-family: var(--wp--preset--font-family--urbanist);
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.wp-site-blocks > footer .wp-block-list {
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 2.1;
	font-size: var(--wp--preset--font-size--small);
}

.wp-site-blocks > footer a {
	color: var(--wp--preset--color--cream);
	text-decoration: none;
}

.wp-site-blocks > footer a:hover {
	color: var(--wp--preset--color--orange-lift);
	text-decoration: underline;
}

.ip-logo {
	display: block;
	width: 150px;
	max-width: 44vw;
	height: auto;
}

.ip-colophon {
	border-top: 1px solid var(--wp--preset--color--ink-600);
	font-family: var(--wp--preset--font-family--urbanist);
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--ink-300);
}

/* ---------------------------------------------------------------------------
 * 18. Entrance motion
 * ------------------------------------------------------------------------ */

/*
 * ONE orchestrated page-load, and it belongs to the EPG rail (above). Sections
 * get only a restrained fade so the rail stays the thing you notice.
 */
.ip-js .ip-animate {
	opacity: 0;
	transform: translateY(12px);
}

.ip-animate.is-revealed {
	opacity: 1;
	transform: none;
	transition: opacity 320ms ease-out, transform 320ms ease-out;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.ip-js .ip-animate,
	.ip-js .ip-epg-row {
		opacity: 1;
		transform: none;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ---------------------------------------------------------------------------
 * 19. Print
 * ------------------------------------------------------------------------ */

@media print {
	.wp-site-blocks > header,
	.wp-site-blocks > footer,
	.wp-block-buttons {
		display: none;
	}

	.ip-js .ip-animate,
	.ip-js .ip-epg-row {
		opacity: 1;
		transform: none;
	}
}

/* ---------------------------------------------------------------------------
 * 20. Smarters Subscriptions Manager
 * ------------------------------------------------------------------------ */

/*
 * The trial success message appends a WhatsApp tip (see inc/ssm-labels.php).
 * ssm-trial.js writes that string with innerHTML, so the span and link render;
 * it needs to read as a secondary note rather than part of the confirmation.
 */
.ip-trial-tip {
	display: block;
	margin-top: 0.85rem;
	padding-top: 0.85rem;
	border-top: 1px solid var(--wp--preset--color--paper-200);
	font-size: var(--wp--preset--font-size--small);
	line-height: 1.5;
}

.ip-trial-tip a {
	font-weight: 600;
	white-space: nowrap;
}

/* SSM renders its own forms; align them to the site's type and controls. */
.ssm-order-form,
.ssm-trial-form {
	font-family: var(--wp--preset--font-family--hanken);
}

.ssm-order-form label,
.ssm-trial-form label {
	font-family: var(--wp--preset--font-family--urbanist);
	font-weight: 600;
	letter-spacing: 0.5px;
}

.ssm-order-form button,
.ssm-trial-form button,
.ssm-order-form input[type="submit"],
.ssm-trial-form input[type="submit"] {
	font-family: var(--wp--preset--font-family--urbanist);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	/* Brand rule: orange fill, BLACK label. Never cream-on-orange (2.80:1). */
	background: var(--wp--preset--color--orange);
	color: var(--wp--preset--color--ink);
	border: 0;
	border-radius: 6px;
}

/*
 * Button size, pinned.
 *
 * theme.json sets the button to 1.0625rem, but `settings.typography.fluid` is
 * on, so WordPress rewrites raw element font sizes into a clamp() — buttons
 * came out scaling 0.875rem -> 1.063rem with the viewport. Headings should
 * scale; a button label should not, and the brand spec gives one fixed size.
 * Everything else about the button (Urbanist, 600, uppercase, 0.5px) is
 * inherited from theme.json and deliberately not repeated here.
 */
:root :where(.wp-element-button, .wp-block-button__link) {
	font-size: 1.0625rem;
}
