/* Compound component states intentionally override their base component rules. */
/* stylelint-disable no-descending-specificity */
:root {
	--wmcp-bone: #f2eedf;
	--wmcp-paper: #fbf8ed;
	--wmcp-forest: #173d2c;
	--wmcp-forest-deep: #0c271c;
	--wmcp-ink: #18201c;
	--wmcp-ink-muted: #5a615a;
	--wmcp-line: #b9b5a8;
	--wmcp-line-dark: #617066;
	--wmcp-orange: #f24b18;
	--wmcp-orange-dark: #bf310a;
	--wmcp-acid: #d7f238;
	--wmcp-signal: #53a86b;
	--wmcp-warning: #c48716;
	--wmcp-danger: #b32818;
	--wmcp-serif: georgia, "Iowan Old Style", "Palatino Linotype", palatino, "Book Antiqua", serif;
	--wmcp-sans: "Avenir Next", avenir, "Segoe UI", helvetica, sans-serif;
	--wmcp-mono: "SFMono-Regular", consolas, "Liberation Mono", menlo, monospace;
	--wmcp-shadow: 10px 10px 0 rgb(12 39 28 / 14%);
}

.wmcp-field,
.wmcp-field *,
.wmcp-field *::before,
.wmcp-field *::after {
	box-sizing: border-box;
}

.wmcp-field {
	color: var(--wmcp-ink);
	font-family: var(--wmcp-sans);
	font-size: 16px;
	font-weight: 450;
	line-height: 1.55;
	margin: 0 auto;
	max-width: 1680px;
	overflow: clip;
	position: relative;
	width: 100%;
}

.wmcp-field[class~="alignfull"]:not(.wmcp-admin-wrap) {
	max-width: 100vw;
	width: 100vw;
}

.wmcp-field::before {
	background-image:
		linear-gradient(rgb(23 61 44 / 4%) 1px, transparent 1px),
		linear-gradient(90deg, rgb(23 61 44 / 4%) 1px, transparent 1px);
	background-size: 28px 28px;
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

.wmcp-field > * {
	position: relative;
	z-index: 1;
}

.wmcp-field a {
	color: inherit;
}

.wmcp-field button,
.wmcp-field input {
	font: inherit;
}

.wmcp-field button:focus-visible,
.wmcp-field a:focus-visible,
.wmcp-field input:focus-visible,
.wmcp-field [tabindex="-1"]:focus-visible {
	outline: 3px solid var(--wmcp-orange);
	outline-offset: 4px;
}

.wmcp-field h1,
.wmcp-field h2,
.wmcp-field h3,
.wmcp-field p {
	margin-top: 0;
}

.wmcp-field h1,
.wmcp-field h2,
.wmcp-field h3 {
	color: inherit;
}

.wmcp-field h1,
.wmcp-field h2 {
	font-family: var(--wmcp-serif);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 0.98;
}

.wmcp-field h1 em,
.wmcp-field h2 em {
	font-weight: 400;
}

.wmcp-skip-link {
	background: var(--wmcp-acid);
	border: 2px solid var(--wmcp-ink);
	color: var(--wmcp-ink) !important;
	font: 700 13px/1 var(--wmcp-mono);
	left: 18px;
	padding: 14px 18px;
	position: fixed;
	top: -100px;
	z-index: 99999;
}

.wmcp-skip-link:focus {
	top: 18px;
}

.wmcp-mono {
	font-family: var(--wmcp-mono) !important;
}

.wmcp-kicker {
	align-items: center;
	display: flex;
	font: 700 11px/1.2 var(--wmcp-mono);
	letter-spacing: 0.12em;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.wmcp-kicker::before {
	background: currentcolor;
	content: "";
	height: 2px;
	margin-right: 10px;
	width: 30px;
}

.wmcp-panel-label {
	align-items: center;
	border-bottom: 1px solid currentcolor;
	display: flex;
	font: 700 10px/1.2 var(--wmcp-mono);
	justify-content: space-between;
	letter-spacing: 0.11em;
	margin-bottom: 22px;
	padding-bottom: 9px;
	text-transform: uppercase;
}

.wmcp-masthead,
.wmcp-store-header,
.wmcp-ops-header {
	align-items: center;
	background: var(--wmcp-paper);
	border-bottom: 2px solid var(--wmcp-ink);
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(200px, 1fr) auto auto;
	min-height: 92px;
	padding: 15px clamp(20px, 4vw, 68px);
}

.wmcp-wordmark {
	align-items: center;
	display: inline-flex;
	font: 700 12px/1.05 var(--wmcp-mono);
	gap: 12px;
	justify-self: start;
	letter-spacing: 0.08em;
	text-decoration: none !important;
	text-transform: uppercase;
}

.wmcp-wordmark em {
	color: var(--wmcp-forest);
	font-family: var(--wmcp-serif);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.wmcp-wordmark-mark {
	align-items: center;
	background: var(--wmcp-forest);
	color: var(--wmcp-acid);
	display: inline-flex;
	font: 800 13px/1 var(--wmcp-mono);
	height: 46px;
	justify-content: center;
	transform: rotate(-3deg);
	width: 46px;
}

.wmcp-masthead-meta {
	display: flex;
	font: 600 10px/1.3 var(--wmcp-mono);
	gap: 28px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wmcp-status-chip {
	align-items: center;
	background: var(--wmcp-bone);
	border: 1px solid var(--wmcp-ink);
	display: inline-flex;
	font: 700 10px/1 var(--wmcp-mono);
	gap: 9px;
	justify-self: end;
	letter-spacing: 0.06em;
	min-height: 34px;
	padding: 8px 11px;
	text-transform: uppercase;
}

.wmcp-status-light {
	background: var(--wmcp-warning);
	border: 1px solid var(--wmcp-ink);
	border-radius: 50%;
	display: inline-block;
	height: 9px;
	width: 9px;
}

.wmcp-status-chip[data-state="ready"] .wmcp-status-light,
.wmcp-status-chip[data-state="passed"] .wmcp-status-light {
	background: var(--wmcp-acid);
	box-shadow: 0 0 0 3px rgb(215 242 56 / 22%);
}

.wmcp-status-chip[data-state="error"] .wmcp-status-light,
.wmcp-status-chip[data-state="unsupported"] .wmcp-status-light {
	background: var(--wmcp-orange);
}

.wmcp-button {
	align-items: center;
	border: 2px solid var(--wmcp-ink) !important;
	border-radius: 0 !important;
	cursor: pointer;
	display: inline-flex;
	font: 750 12px/1 var(--wmcp-mono) !important;
	gap: 24px;
	justify-content: space-between;
	letter-spacing: 0.04em;
	min-height: 48px;
	padding: 14px 17px !important;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.wmcp-button:hover {
	transform: translate(-2px, -2px);
}

.wmcp-button-primary {
	background: var(--wmcp-orange) !important;
	color: var(--wmcp-ink) !important;
}

.wmcp-button-primary:hover {
	background: var(--wmcp-orange-dark) !important;
	color: #fff !important;
}

.wmcp-button-quiet {
	background: transparent !important;
	color: inherit !important;
}

.wmcp-button-quiet:hover {
	background: var(--wmcp-acid) !important;
	color: var(--wmcp-ink) !important;
}

.wmcp-button:disabled,
.wmcp-action-tile:disabled {
	cursor: not-allowed;
	filter: grayscale(1);
	opacity: 0.55;
	transform: none;
}

.wmcp-text-link {
	border-bottom: 1px solid currentcolor;
	display: inline-flex;
	font: 700 11px/1.3 var(--wmcp-mono);
	gap: 18px;
	letter-spacing: 0.03em;
	padding-bottom: 4px;
	text-decoration: none !important;
	text-transform: uppercase;
}

.wmcp-text-link:hover {
	border-color: var(--wmcp-orange);
	color: var(--wmcp-orange-dark) !important;
}

.wmcp-copy-button {
	align-items: center;
	background: transparent;
	border: 0;
	border-top: 1px solid currentcolor;
	color: inherit;
	cursor: pointer;
	display: flex;
	font: 750 10px/1 var(--wmcp-mono);
	justify-content: space-between;
	letter-spacing: 0.08em;
	padding: 13px 0 0;
	text-transform: uppercase;
	width: 100%;
}

.wmcp-copy-button:hover {
	color: var(--wmcp-orange-dark);
}

.wmcp-readiness-card .wmcp-text-link:hover,
.wmcp-store-prompt .wmcp-copy-button:hover,
.wmcp-checkout-panel .wmcp-text-link:hover {
	border-color: var(--wmcp-acid);
	color: var(--wmcp-acid) !important;
}

.wmcp-live-message,
.wmcp-reset-feedback,
.wmcp-error-message {
	font: 600 11px/1.5 var(--wmcp-mono);
	margin: 18px 0 0;
}

.wmcp-error-message {
	background: #ffe4d9;
	border-left: 5px solid var(--wmcp-danger);
	color: #671b12;
	padding: 12px 14px;
}

.wmcp-empty-state,
.wmcp-table-empty {
	color: var(--wmcp-ink-muted);
	font-size: 13px;
}

.wmcp-hero {
	background: var(--wmcp-bone);
	display: grid;
	grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.62fr);
	min-height: 670px;
}

.wmcp-hero-copy {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(70px, 10vw, 150px) clamp(25px, 7vw, 120px);
}

.wmcp-hero-copy h1,
.wmcp-health-hero h1,
.wmcp-store-hero h1 {
	font-size: clamp(54px, 7.4vw, 118px);
	margin: 0 0 34px;
	max-width: 1120px;
}

.wmcp-hero-copy h1 em,
.wmcp-health-hero h1 em,
.wmcp-store-hero h1 em {
	color: var(--wmcp-forest);
}

.wmcp-deck {
	font-family: var(--wmcp-serif);
	font-size: clamp(19px, 2vw, 27px);
	line-height: 1.4;
	max-width: 790px;
}

.wmcp-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.wmcp-readiness-card {
	align-self: center;
	background: var(--wmcp-forest);
	box-shadow: 16px 16px 0 var(--wmcp-orange);
	color: var(--wmcp-paper);
	margin: 55px clamp(25px, 5vw, 85px) 55px 0;
	padding: clamp(28px, 4vw, 50px);
	transform: rotate(0.6deg);
}

.wmcp-readiness-card h2 {
	font-size: clamp(34px, 3.4vw, 58px);
	margin-bottom: 30px;
}

.wmcp-check-list {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
}

.wmcp-check-list li {
	align-items: center;
	border-bottom: 1px solid rgb(255 255 255 / 22%);
	display: flex;
	font: 500 12px/1.3 var(--wmcp-mono);
	justify-content: space-between;
	padding: 12px 0;
}

.wmcp-check-list li strong,
.wmcp-check-list li b {
	color: var(--wmcp-acid);
	font: 750 10px/1.2 var(--wmcp-mono);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.wmcp-check-list li[data-state="failed"] strong,
.wmcp-check-list li[data-state="failed"] b,
.wmcp-check-list li[data-state="unavailable"] strong,
.wmcp-check-list li[data-state="unavailable"] b {
	color: #ff9d7c;
}

.wmcp-loop {
	background: var(--wmcp-paper);
	border-top: 2px solid var(--wmcp-ink);
	padding: clamp(70px, 8vw, 130px) clamp(25px, 5vw, 86px);
}

.wmcp-section-heading {
	display: grid;
	gap: 30px;
	grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1.52fr);
	margin-bottom: 70px;
}

.wmcp-section-heading h2 {
	font-size: clamp(42px, 5vw, 78px);
	margin: 0;
}

.wmcp-section-heading > p:not(.wmcp-kicker) {
	align-self: end;
	max-width: 570px;
}

.wmcp-loop-rail {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.wmcp-loop-rail li {
	border-left: 1px solid var(--wmcp-line);
	min-height: 265px;
	padding: 24px 28px 28px;
	position: relative;
}

.wmcp-loop-rail li::after {
	background: var(--wmcp-orange);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	content: "";
	height: 14px;
	position: absolute;
	right: -8px;
	top: 30px;
	width: 12px;
	z-index: 2;
}

.wmcp-loop-rail li:last-child {
	background: var(--wmcp-forest);
	color: var(--wmcp-paper);
}

.wmcp-loop-rail li:last-child::after {
	display: none;
}

.wmcp-loop-index,
.wmcp-action-number {
	display: block;
	font: 700 10px/1 var(--wmcp-mono);
	margin-bottom: 70px;
}

.wmcp-loop-rail strong {
	display: block;
	font-family: var(--wmcp-serif);
	font-size: 28px;
	font-weight: 400;
	margin-bottom: 12px;
}

.wmcp-loop-rail p {
	font-size: 13px;
	margin: 0;
	max-width: 240px;
}

.wmcp-prompts {
	background: var(--wmcp-forest-deep);
	color: var(--wmcp-paper);
	display: grid;
	gap: 2px;
	grid-template-columns: 0.72fr 1fr 1fr;
	padding: clamp(70px, 8vw, 120px) clamp(25px, 5vw, 86px);
}

.wmcp-section-heading-narrow {
	display: block;
	margin: 0;
	padding: 20px 40px 20px 0;
}

.wmcp-section-heading-narrow h2 {
	font-size: clamp(38px, 4vw, 65px);
}

.wmcp-prompt-card {
	background: var(--wmcp-paper);
	color: var(--wmcp-ink);
	min-height: 440px;
	padding: clamp(28px, 4vw, 52px);
}

.wmcp-prompt-merchant {
	background: var(--wmcp-acid);
	transform: translateY(32px);
}

.wmcp-prompt-card blockquote {
	border: 0;
	font-family: var(--wmcp-serif);
	font-size: clamp(22px, 2.25vw, 35px);
	font-style: normal;
	line-height: 1.28;
	margin: 0 0 48px;
	padding: 0;
}

.wmcp-access {
	background: var(--wmcp-bone);
	border-bottom: 2px solid var(--wmcp-ink);
	border-top: 2px solid var(--wmcp-ink);
	display: grid;
	gap: 70px;
	grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
	padding: clamp(85px, 9vw, 145px) clamp(25px, 5vw, 86px);
}

.wmcp-access h2 {
	font-size: clamp(40px, 4.5vw, 72px);
	margin-bottom: 26px;
}

.wmcp-access-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wmcp-action-tile {
	appearance: none;
	background: var(--wmcp-paper);
	border: 1px solid var(--wmcp-ink);
	border-radius: 0;
	color: inherit;
	cursor: pointer;
	display: block;
	min-height: 190px;
	padding: 22px;
	text-align: left;
	text-decoration: none !important;
	transition: background 140ms ease, transform 140ms ease;
}

.wmcp-action-tile:hover {
	background: var(--wmcp-acid);
	transform: translate(-3px, -3px);
}

.wmcp-action-tile strong {
	display: block;
	font-family: var(--wmcp-serif);
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 8px;
}

.wmcp-action-tile small {
	color: var(--wmcp-ink-muted);
	font: 600 10px/1.4 var(--wmcp-mono);
	text-transform: uppercase;
}

.wmcp-owner-action {
	background:
		repeating-linear-gradient(-45deg, transparent, transparent 8px, rgb(23 61 44 / 5%) 8px, rgb(23 61 44 / 5%) 9px),
		var(--wmcp-paper);
	cursor: default;
}

.wmcp-owner-action:hover {
	background:
		repeating-linear-gradient(-45deg, transparent, transparent 8px, rgb(23 61 44 / 5%) 8px, rgb(23 61 44 / 5%) 9px),
		var(--wmcp-paper);
	transform: none;
}

.wmcp-field-footer {
	align-items: center;
	background: var(--wmcp-paper);
	display: flex;
	font-size: 12px;
	gap: 40px;
	justify-content: space-between;
	padding: 28px clamp(25px, 5vw, 86px);
}

.wmcp-field-footer p {
	margin: 0;
	max-width: 920px;
}

.wmcp-field-footer .wmcp-mono {
	font-size: 9px;
	text-align: right;
	text-transform: uppercase;
}

.wmcp-table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.wmcp-screen-reader-text {
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	overflow-wrap: normal !important;
	position: absolute !important;
	width: 1px;
}

@media (width <= 1100px) {
	.wmcp-hero {
		grid-template-columns: 1fr;
	}

	.wmcp-readiness-card {
		margin: 0 35px 75px;
	}

	.wmcp-loop-rail {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wmcp-prompts {
		grid-template-columns: repeat(2, 1fr);
	}

	.wmcp-section-heading-narrow {
		grid-column: 1 / -1;
	}

	.wmcp-access {
		grid-template-columns: 1fr;
	}
}

@media (width <= 760px) {
	.wmcp-field {
		font-size: 15px;
	}

	.wmcp-masthead,
	.wmcp-store-header,
	.wmcp-ops-header {
		grid-template-columns: 1fr auto;
		padding: 13px 18px;
	}

	.wmcp-masthead-meta {
		display: none;
	}

	.wmcp-status-chip {
		max-width: 175px;
	}

	.wmcp-hero-copy {
		padding: 72px 20px;
	}

	.wmcp-hero-copy h1,
	.wmcp-health-hero h1,
	.wmcp-store-hero h1 {
		font-size: clamp(48px, 15vw, 76px);
	}

	.wmcp-readiness-card {
		box-shadow: 9px 9px 0 var(--wmcp-orange);
		margin: 0 18px 60px;
		padding: 25px;
	}

	.wmcp-section-heading {
		display: block;
		margin-bottom: 38px;
	}

	.wmcp-loop,
	.wmcp-prompts,
	.wmcp-access {
		padding-left: 20px;
		padding-right: 20px;
	}

	.wmcp-loop-rail,
	.wmcp-prompts,
	.wmcp-access-grid {
		grid-template-columns: 1fr;
	}

	.wmcp-loop-rail li {
		min-height: 215px;
	}

	.wmcp-prompt-card {
		min-height: auto;
	}

	.wmcp-prompt-merchant {
		transform: none;
	}

	.wmcp-field-footer {
		align-items: flex-start;
		flex-direction: column;
		padding: 26px 20px;
	}

	.wmcp-field-footer .wmcp-mono {
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wmcp-field *,
	.wmcp-field *::before,
	.wmcp-field *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

@media print {
	.wmcp-field::before,
	.wmcp-button,
	.wmcp-copy-button,
	.wmcp-board-nav {
		display: none !important;
	}

	.wmcp-field {
		background: #fff !important;
		color: #000 !important;
	}
}
