/* ============================================================
   ERP Post-Go-Live Stabilization — page styles
   Namespaced with .erps-  ·  references global tokens via var()
   Loads after the global style.css; no :root redefinition.
   ============================================================ */

.erps { display: block; }

/* ---- Shared section scaffolding ---- */
.erps-section-head {
	max-width: 760px;
	margin: 0 auto 64px;
	text-align: center;
}
.erps-section-head .eyebrow { display: block; margin-bottom: 22px; }
/* Orange-square eyebrow (.eyebrow-mark) used in section heads — centered
   via the section head's text-align, with matching spacing. */
.erps-section-head .eyebrow-mark,
.erps-faq-head .eyebrow-mark { margin-bottom: 22px; }
.erps-section-head h2 {
	font-size: clamp(30px, 3.4vw, 50px);
	max-width: 18ch;
	margin: 0 auto;
}
.erps-section-lead {
	margin: 22px auto 0;
	max-width: 60ch;
	font-size: clamp(16px, 1.2vw, 18px);
	line-height: 1.6;
	color: var(--muted);
}

.erps-ico {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line-2);
	border-radius: 12px;
	color: var(--accent);
	background: var(--bg);
	margin-bottom: 22px;
}
.erps-ico svg { width: 24px; height: 24px; }


/* ============ 1. HERO ============ */
.erps-hero {
	position: relative;
	padding: clamp(88px, 11vw, 140px) 0 clamp(72px, 8vw, 104px);
	text-align: center;
	overflow: hidden;
}
.erps-hero .container { position: relative; z-index: 1; }
.erps-hero .eyebrow-mark { justify-content: center; }

.erps-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.erps-hero-ripple {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	border: 1px solid var(--line);
	transform: translate(-50%, -50%);
	opacity: 0.6;
}
.erps-hero-ripple.r1 { width: 480px;  height: 480px; }
.erps-hero-ripple.r2 { width: 760px;  height: 760px; opacity: 0.4; }
.erps-hero-ripple.r3 { width: 1080px; height: 1080px; opacity: 0.25; }

.erps-hero-h1 {
	font-size: clamp(44px, 6.4vw, 92px);
	line-height: 0.98;
	letter-spacing: -0.035em;
	font-weight: 600;
	color: var(--ink);
	max-width: 18ch;
	margin: 0 auto 28px;
	text-wrap: balance;
}
.erps-hero h1 .hi {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 500;
	letter-spacing: -0.025em;
	color: var(--accent);
}
.erps-hero-lead {
	font-size: clamp(17px, 1.4vw, 20px);
	line-height: 1.55;
	color: var(--muted);
	max-width: 64ch;
	margin: 0 auto 40px;
	text-wrap: pretty;
}
.erps-hero-cta {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}


/* ============ 2. THE POST-GO-LIVE REALITY ============ */
.erps-reality {
	padding: clamp(80px, 9vw, 120px) 0;
	background: var(--bg-2);
}
.erps-reality-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.erps-reality-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 36px;
}
.erps-reality-card-title {
	font-size: clamp(20px, 1.7vw, 26px);
	font-weight: 600;
	letter-spacing: -0.015em;
	line-height: 1.2;
	color: var(--ink);
	margin: 0 0 12px;
}
.erps-reality-card p {
	color: var(--muted);
	font-size: 15.5px;
	line-height: 1.6;
}
.erps-reality-card--accent {
	background: var(--ink);
	border-color: var(--ink);
}
.erps-reality-card--accent .erps-reality-card-title { color: var(--paper); }
.erps-reality-card--accent p { color: var(--muted-2); }
.erps-reality-card--accent .erps-ico {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.18);
	color: var(--accent);
}


/* ============ 3. WHAT WE STABILIZE ============ */
.erps-stabilize { padding: clamp(80px, 9vw, 120px) 0; }
.erps-stabilize-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.erps-stab-card {
	position: relative;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 40px 36px 36px;
	transition: border-color .2s var(--ease-out), transform .3s var(--ease-out);
}
.erps-stab-card:hover {
	border-color: var(--line-2);
	transform: translateY(-3px);
}
.erps-stab-num {
	position: absolute;
	top: 32px;
	right: 36px;
	font-family: var(--font-number);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--muted-2);
}
.erps-stab-title {
	font-size: clamp(22px, 1.9vw, 30px);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: var(--ink);
	margin: 0 0 12px;
}
.erps-stab-card > p {
	color: var(--muted);
	font-size: 15.5px;
	line-height: 1.6;
	margin: 0 0 22px;
}
.erps-stab-list {
	list-style: none;
	margin: 0;
	padding: 22px 0 0;
	border-top: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.erps-stab-list li {
	position: relative;
	padding-left: 26px;
	font-size: 14.5px;
	line-height: 1.45;
	color: var(--ink-2);
}
.erps-stab-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--accent);
}


/* ============ 4. APPROACH ============ */
.erps-approach {
	padding: clamp(80px, 9vw, 120px) 0;
	background: var(--bg-2);
}
.erps-steps {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 920px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	counter-reset: erps-step;
}
.erps-step {
	display: flex;
	gap: 22px;
	align-items: flex-start;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 28px 30px;
}
.erps-step-num {
	flex-shrink: 0;
	font-family: var(--font-number);
	font-size: 14px;
	font-weight: 700;
	color: var(--paper);
	background: var(--ink);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	letter-spacing: -0.01em;
}
.erps-step-title {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.2;
	color: var(--ink);
	margin: 4px 0 8px;
}
.erps-step-body p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.55;
}
.erps-approach-cta {
	margin-top: 48px;
	text-align: center;
}


/* ============ 5. OUTCOMES ============ */
.erps-outcomes { padding: clamp(80px, 9vw, 120px) 0; }
.erps-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 48px 0;
	margin-bottom: 56px;
}
.erps-stat {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}
.erps-stat-v {
	font-family: var(--font-number);
	font-size: clamp(30px, 3.4vw, 46px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--ink);
}
.erps-stat-v small {
	font-size: 0.42em;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 0;
}
.erps-stat-l {
	font-size: 13.5px;
	line-height: 1.4;
	color: var(--muted);
	max-width: 22ch;
}

.erps-beforeafter {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: stretch;
	gap: 24px;
	max-width: 1020px;
	margin: 0 auto;
}
.erps-ba {
	border-radius: var(--r-lg);
	padding: 30px 34px 34px;
	display: flex;
	flex-direction: column;
}

/* Tag with a leading status dot + a hairline rule under it */
.erps-ba-tag {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding-bottom: 4px;
	margin-bottom: 8px;
}
.erps-ba-tag::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

/* BEFORE — the old state: light, muted, "cluttered" */
.erps-ba--before {
	background: var(--bg-2);
	border: 1px solid var(--line);
}
.erps-ba--before .erps-ba-tag { color: var(--muted); }
.erps-ba--before .erps-ba-tag::before { background: var(--muted-2); }

/* AFTER — the KCT state: dark, crisp, lifted by an orange glow */
.erps-ba--after {
	background: var(--ink);
	border: 1px solid rgba(255, 72, 0, 0.3);
	box-shadow: 0 28px 64px -32px rgba(255, 72, 0, 0.55);
}
.erps-ba--after .erps-ba-tag { color: var(--accent-soft); }
.erps-ba--after .erps-ba-tag::before {
	background: var(--accent);
	box-shadow: 0 0 0 4px rgba(255, 72, 0, 0.25);
}

.erps-ba-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.erps-ba-list li {
	position: relative;
	padding: 14px 0 14px 40px;
	font-size: 15px;
	line-height: 1.45;
}
.erps-ba-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.erps-ba--before .erps-ba-list li {
	color: var(--ink-2);
	border-bottom: 1px solid var(--line);
}
.erps-ba--after .erps-ba-list li {
	color: rgba(255, 255, 255, 0.88);
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

/* Round icon chip */
.erps-ba-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 13px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
}
/* Masked glyph centered on the chip */
.erps-ba-list li::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 19px;
	width: 12px;
	height: 12px;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-size: contain;
	        mask-size: contain;
}
/* BEFORE: hollow chip + muted ✕ */
.erps-ba--before .erps-ba-list li::before {
	background: var(--paper);
	border: 1px solid var(--line-2);
}
.erps-ba--before .erps-ba-list li::after {
	background: var(--muted);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
	        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
}
/* AFTER: solid orange chip + white ✓ */
.erps-ba--after .erps-ba-list li::before { background: var(--accent); }
.erps-ba--after .erps-ba-list li::after {
	background: #ffffff;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
	        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* Connector — bold filled orange disc */
.erps-ba-arrow {
	align-self: center;
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	background: var(--accent);
	box-shadow: 0 16px 34px -12px rgba(255, 72, 0, 0.55);
}
.erps-ba-arrow svg { width: 24px; height: 24px; }

/* Stack before → after vertically on narrow screens */
@media (max-width: 760px) {
	.erps-beforeafter {
		grid-template-columns: 1fr;
		max-width: 520px;
		gap: 16px;
	}
	.erps-ba-arrow { transform: rotate(90deg); margin: 2px auto; }
}


/* ============ 6. WHO IT'S FOR ============ */
.erps-who {
	padding: clamp(80px, 9vw, 120px) 0;
	background: var(--bg-2);
}
.erps-who-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.erps-who-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 36px;
}
.erps-who-card-title {
	font-size: clamp(19px, 1.6vw, 24px);
	font-weight: 600;
	letter-spacing: -0.015em;
	line-height: 1.2;
	color: var(--ink);
	margin: 0 0 10px;
}
.erps-who-card p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.6;
}


/* ============ 7. FAQ ============ */
.erps-faq { padding: clamp(80px, 9vw, 120px) 0; }
.erps-faq-head {
	text-align: center;
	margin-bottom: 56px;
}
.erps-faq-head .eyebrow { display: block; margin-bottom: 22px; }
.erps-faq-head h2 {
	max-width: 22ch;
	margin: 0 auto;
	font-size: clamp(30px, 3.2vw, 48px);
}


/* ============ 8. CLOSING CTA ============ */
.erps-cta { padding: 0 0 clamp(80px, 9vw, 120px); }
.erps-cta-card {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	border-radius: var(--r-xl);
	padding: clamp(56px, 7vw, 96px) clamp(28px, 5vw, 72px);
	text-align: center;
}
/* Scoped under .erps-cta-card so position:absolute wins over the generic
   `.erps-cta-card > *` rule below — otherwise the glow drops into normal
   flow and injects ~720px of empty space at the top of the card. */
.erps-cta-card .erps-cta-glow {
	position: absolute;
	z-index: 0;
	top: -40%;
	left: 50%;
	width: 720px;
	height: 720px;
	transform: translateX(-50%);
	background: radial-gradient(circle, var(--accent) 0%, rgba(255, 72, 0, 0) 62%);
	opacity: 0.32;
	pointer-events: none;
}
.erps-cta-card > * { position: relative; z-index: 1; }
.erps-cta-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent-soft);
	margin-bottom: 26px;
}
.erps-cta-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 4px rgba(255, 72, 0, 0.22);
}
.erps-cta-card h2 {
	color: var(--paper);
	font-size: clamp(34px, 4.2vw, 64px);
	letter-spacing: -0.03em;
	line-height: 1.02;
	max-width: 18ch;
	margin: 0 auto 22px;
}
.erps-cta-sub {
	color: rgba(255, 255, 255, 0.74);
	font-size: clamp(16px, 1.3vw, 19px);
	line-height: 1.55;
	max-width: 58ch;
	margin: 0 auto 40px;
}
/* Invert the global .btn-black inside the dark CTA card: white pill on dark. */
.erps-cta-btn {
	background: var(--paper);
	color: var(--ink);
}


/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
	.erps-reality-grid,
	.erps-stabilize-grid,
	.erps-who-grid {
		grid-template-columns: 1fr;
	}
	.erps-steps { grid-template-columns: 1fr; max-width: 640px; }
	.erps-stats { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
	.erps-beforeafter {
		grid-template-columns: 1fr;
		max-width: 560px;
		gap: 16px;
	}
	.erps-ba-arrow { transform: rotate(90deg); margin: 0 auto; }
}

@media (max-width: 640px) {
	.erps-hero { padding: 72px 0 56px; }
	.erps-reality-card,
	.erps-stab-card,
	.erps-who-card,
	.erps-ba { padding: 28px 24px; }
	.erps-step { padding: 24px; gap: 18px; }
	.erps-stats {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 40px 0;
	}
	.erps-stat-l { max-width: none; }
	.erps-section-head { margin-bottom: 44px; }
	.erps-stab-num { top: 28px; right: 24px; }
}

/* Respect reduced-motion: drop the hover lift. */
@media (prefers-reduced-motion: reduce) {
	.erps-stab-card { transition: none; }
	.erps-stab-card:hover { transform: none; }
}


/* Three-card 2+1 grid: keep the existing 2-column grid, but center the
   third card in the second row so it doesn't sit as an orphan. Used on
   the Partners page (UiPath/AWS/SAIC and the cert trio). */
@media (min-width: 1101px) {
	.erps-stabilize-grid--three .erps-stab-card:nth-child(3) {
		grid-column: 1 / -1;
		max-width: calc(50% - 12px);
		justify-self: center;
	}
}

/* ============================================================
   PLATFORMS PAGE — editorial redesign
   ============================================================ */

/* Position manifesto — centered statement + a "three negations → one
   affirmation" card that dramatizes the vendor-neutral claim. Soft grey bg
   so the section feels distinct from the hero. */
.platforms-position {
	padding: clamp(80px, 9vw, 130px) 0;
	background: var(--bg-2);
}
.platforms-position .container { max-width: 1080px; }

.np-head { text-align: center; max-width: 720px; margin: 0 auto; }
.np-head .eyebrow-mark { justify-content: center; margin-bottom: 22px; }
.np-head h2 {
	font-size: clamp(38px, 5.4vw, 68px);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.02;
	color: var(--ink);
	margin: 0;
}
.np-hi { color: var(--accent); }
.np-sub {
	margin: 20px auto 0;
	max-width: 54ch;
	font-size: clamp(16px, 1.3vw, 18.5px);
	line-height: 1.6;
	color: var(--muted);
}

/* The position card */
.np-panel {
	margin: clamp(40px, 5vw, 60px) auto 0;
	max-width: 980px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 30px 60px -40px rgba(20, 18, 14, 0.20);
}

/* Three negations — columns split by hairlines */
.np-nots {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.np-not {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	padding: clamp(28px, 3.2vw, 44px);
	border-right: 1px solid var(--line);
	transition: background-color 0.3s ease;
}
.np-not:last-child { border-right: none; }
.np-not:hover { background: rgba(255, 72, 0, 0.035); }
.np-not-x {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(255, 72, 0, 0.10);
	color: var(--accent);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.np-not:hover .np-not-x { transform: rotate(90deg); }
.np-not-x svg { width: 20px; height: 20px; }
.np-not-kicker {
	font-family: var(--font-mono);
	font-size: 11.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}
.np-not-label {
	font-size: clamp(20px, 2vw, 27px);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--ink);
	text-decoration: line-through;
	text-decoration-color: var(--accent);
	text-decoration-thickness: 2px;
}

/* The single affirmation — accent footer strip */
.np-affirm {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: clamp(24px, 2.8vw, 32px) clamp(28px, 3.2vw, 44px);
	background: linear-gradient(100deg, rgba(255, 72, 0, 0.09), rgba(255, 72, 0, 0.02));
	border-top: 1px solid var(--line);
}
.np-affirm-check {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--accent);
	color: #ffffff;
	box-shadow: 0 8px 20px -8px rgba(255, 72, 0, 0.55);
}
.np-affirm-check svg { width: 22px; height: 22px; }
.np-affirm-text {
	margin: 0;
	font-size: clamp(15.5px, 1.2vw, 17.5px);
	line-height: 1.6;
	color: var(--ink-2);
}
.np-affirm-text strong { color: var(--ink); font-weight: 600; }
.np-affirm-text a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	font-weight: 500;
}

@media (max-width: 760px) {
	.np-nots { grid-template-columns: 1fr; }
	.np-not { border-right: none; border-bottom: 1px solid var(--line); flex-direction: row; align-items: center; gap: 16px; }
	.np-not-kicker { display: none; }
	.np-affirm { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
	.np-not, .np-not-x { transition: none; }
	.np-not:hover .np-not-x { transform: none; }
}

/* Headliner platforms — asymmetric bento with platform-specific mock
   visualizations. Tyler dominates as a tall left tile; OpenGov + Workday
   stack on the right; Oracle Cloud spans the bottom. Each tile carries
   a unique CSS-rendered mock that hints at the platform's domain. */
.platforms-bento { padding: clamp(80px, 9vw, 130px) 0; }
.platforms-bento .container { max-width: 1200px; }
.platforms-bento-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(56px, 7vw, 88px);
}
.platforms-bento-head .eyebrow-mark { justify-content: center; margin-bottom: 22px; }
.platforms-bento-head h2 {
	font-size: clamp(32px, 3.8vw, 52px);
	font-weight: 600;
	letter-spacing: -0.024em;
	line-height: 1.08;
	color: var(--ink);
	margin: 0 auto 22px;
	max-width: 18ch;
}
.platforms-bento-head p {
	font-size: clamp(16px, 1.2vw, 18px);
	line-height: 1.6;
	color: var(--muted);
	margin: 0 auto;
	max-width: 60ch;
}
.platforms-bento-grid {
	display: grid;
	grid-template-columns: 1.65fr 1fr;
	grid-template-rows: 1fr 1fr auto;
	gap: 16px;
}
.platforms-bento-tile {
	position: relative;
	border-radius: 26px;
	padding: 32px 32px 30px;
	background: var(--paper);
	border: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 320ms var(--ease-out), border-color 320ms ease, box-shadow 320ms ease;
	min-height: 320px;
}
.platforms-bento-tile:hover {
	transform: translateY(-4px);
	border-color: var(--line-2);
	box-shadow: 0 24px 48px -28px rgba(13, 13, 13, 0.18);
}
.platforms-bento-tile--tyler {
	grid-column: 1;
	grid-row: 1 / span 2;
	background: linear-gradient(180deg, var(--paper) 0%, #f9f7f4 100%);
}
/* Tyler spans two rows — the visual stack expands to fill the extra
   vertical space so the body never floats with empty whitespace above it. */
.platforms-bento-tile--tyler .platforms-bento-visual {
	flex: 1;
	justify-content: center;
	gap: 12px;
}
.platforms-bento-tile--tyler .pb-stack {
	gap: 12px;
}
.platforms-bento-tile--tyler .pb-stack-row {
	padding: 16px 20px;
	font-size: 13px;
}
.platforms-bento-tile--opengov { grid-column: 2; grid-row: 1; }
.platforms-bento-tile--workday { grid-column: 2; grid-row: 2; }
.platforms-bento-tile--oracle {
	grid-column: 1 / -1;
	grid-row: 3;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 24px;
	align-items: center;
	min-height: 220px;
}
.platforms-bento-tile--oracle .platforms-bento-visual { order: 2; min-height: 160px; }
.platforms-bento-tile--oracle .platforms-bento-body { order: 1; padding-bottom: 0; }

/* Body block — number eyebrow, name, italic sub, description, tags */
.platforms-bento-body { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; margin-top: auto; }
.platforms-bento-num {
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
}
.platforms-bento-name {
	font-size: clamp(22px, 2.4vw, 30px);
	font-weight: 600;
	letter-spacing: -0.022em;
	line-height: 1.1;
	color: var(--ink);
	margin: 4px 0 0;
}
.platforms-bento-tile--tyler .platforms-bento-name { font-size: clamp(28px, 3vw, 38px); }
.platforms-bento-sub {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(16px, 1.4vw, 19px);
	font-weight: 500;
	color: var(--accent);
	margin: 2px 0 8px;
	letter-spacing: -0.005em;
}
.platforms-bento-desc {
	font-size: 15px;
	line-height: 1.6;
	color: var(--muted);
	margin: 0;
}
.platforms-bento-tile--tyler .platforms-bento-desc { font-size: 15.5px; }
.platforms-bento-tags {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.platforms-bento-tags li {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-2);
	background: var(--bg-2);
	border-radius: 999px;
	padding: 6px 12px;
	transition: background 180ms ease, color 180ms ease;
}
.platforms-bento-tags li:hover { background: var(--ink); color: var(--paper); }

/* Visual area — each tile gets a unique CSS-rendered mock */
.platforms-bento-visual {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 180px;
	margin-bottom: 4px;
}

/* TYLER — vertical module stack */
.pb-stack {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.pb-stack-row {
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 12px 18px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: transform 240ms var(--ease-out);
}
.platforms-bento-tile--tyler:hover .pb-stack-row { transform: translateX(4px); }
.platforms-bento-tile--tyler:hover .pb-stack-row:nth-child(2) { transform: translateX(8px); }
.platforms-bento-tile--tyler:hover .pb-stack-row:nth-child(3) { transform: translateX(12px); }
.platforms-bento-tile--tyler:hover .pb-stack-row:nth-child(4) { transform: translateX(8px); }
.platforms-bento-tile--tyler:hover .pb-stack-row:nth-child(5) { transform: translateX(4px); }
.pb-stack-row--dark   { background: var(--ink);          color: var(--paper); }
.pb-stack-row--accent { background: var(--accent);       color: var(--paper); }
.pb-stack-row--peach  { background: var(--accent-soft);  color: var(--ink); }
.pb-stack-row--ghost  { background: var(--bg-2);         color: var(--muted); border: 1px solid var(--line); }
.pb-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.5;
	flex-shrink: 0;
}

/* OPENGOV — bar chart */
.pb-chart {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
	height: 130px;
	padding: 0 4px;
}
.pb-chart i {
	flex: 1;
	background: var(--bg-2);
	border-radius: 6px 6px 2px 2px;
	transition: background 240ms ease, transform 240ms var(--ease-out);
	transform-origin: bottom;
}
.pb-chart-active { background: var(--accent) !important; }
.platforms-bento-tile--opengov:hover .pb-chart i { transform: scaleY(1.06); }
.platforms-bento-tile--opengov:hover .pb-chart i:nth-child(2) { transform: scaleY(1.12); }
.platforms-bento-tile--opengov:hover .pb-chart i:nth-child(4) { transform: scaleY(1.18); }
.platforms-bento-tile--opengov:hover .pb-chart-active { transform: scaleY(1.24); }
.pb-chart-axis {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted-2);
}

/* WORKDAY — avatar grid */
.pb-people {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
	padding: 0 4px;
}
.pb-person {
	aspect-ratio: 1;
	background: var(--bg-2);
	border-radius: 50%;
	position: relative;
}
.pb-person::before {
	content: "";
	position: absolute;
	top: 28%; left: 50%;
	transform: translateX(-50%);
	width: 38%; height: 38%;
	background: var(--muted-2);
	opacity: 0.4;
	border-radius: 50%;
}
.pb-person::after {
	content: "";
	position: absolute;
	top: 68%; left: 50%;
	transform: translateX(-50%);
	width: 70%; height: 32%;
	background: var(--muted-2);
	opacity: 0.4;
	border-radius: 50% 50% 0 0;
}
.pb-person--accent { background: var(--accent-soft); }
.pb-person--accent::before, .pb-person--accent::after { background: var(--accent); opacity: 0.85; }
.platforms-bento-tile--workday:hover .pb-person--accent {
	background: var(--accent);
}
.platforms-bento-tile--workday:hover .pb-person--accent::before,
.platforms-bento-tile--workday:hover .pb-person--accent::after {
	background: var(--paper); opacity: 0.95;
}

/* ORACLE — cloud shape with nodes */
.pb-cloud {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 140px;
	color: var(--ink-2);
}
.pb-cloud svg {
	width: 240px;
	height: auto;
	display: block;
	transition: transform 360ms var(--ease-out);
}
.platforms-bento-tile--oracle:hover .pb-cloud svg { transform: translateY(-2px) scale(1.02); }
.pb-cloud-nodes {
	position: absolute;
	display: flex;
	gap: 10px;
}
.pb-cloud-nodes span {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.15em;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--accent);
	color: var(--paper);
	box-shadow: 0 0 0 4px var(--paper);
}
.pb-cloud-nodes span:nth-child(2) { background: var(--ink); }
.pb-cloud-nodes span:nth-child(3) { background: var(--accent-soft); color: var(--ink); }

/* Responsive */
@media (max-width: 920px) {
	.platforms-bento-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}
	.platforms-bento-tile--tyler,
	.platforms-bento-tile--opengov,
	.platforms-bento-tile--workday,
	.platforms-bento-tile--oracle {
		grid-column: 1;
		grid-row: auto;
		min-height: 0;
	}
	.platforms-bento-tile--oracle {
		grid-template-columns: 1fr;
	}
	.platforms-bento-tile--oracle .platforms-bento-visual { order: 0; }
	.platforms-bento-tile--oracle .platforms-bento-body { order: 1; }
}
@media (prefers-reduced-motion: reduce) {
	.platforms-bento-tile, .pb-stack-row, .pb-chart i, .pb-cloud svg, .pb-person--accent { transition: none; }
	.platforms-bento-tile:hover,
	.platforms-bento-tile--tyler:hover .pb-stack-row,
	.platforms-bento-tile--opengov:hover .pb-chart i,
	.platforms-bento-tile--oracle:hover .pb-cloud svg { transform: none; }
}

/* Closing invitation card — editorial light-bg section with a single
   centered statement and primary CTA. */
.platforms-close {
	padding: clamp(80px, 9vw, 120px) 0 clamp(96px, 10vw, 140px);
	background: var(--paper);
}
.platforms-close-card {
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
	padding: clamp(40px, 5vw, 64px) 16px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	position: relative;
}
.platforms-close-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted-2);
	margin-bottom: 28px;
}
.platforms-close-eyebrow .dot {
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(255, 72, 0, 0.2);
}
.platforms-close-h2 {
	font-size: clamp(32px, 4.4vw, 60px);
	font-weight: 600;
	letter-spacing: -0.028em;
	line-height: 1.04;
	color: var(--ink);
	margin: 0 auto 24px;
	max-width: 18ch;
}
.platforms-close-h2-em {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 500;
	color: var(--accent);
	letter-spacing: -0.018em;
}
.platforms-close-sub {
	font-size: clamp(16px, 1.25vw, 19px);
	line-height: 1.6;
	color: var(--muted);
	margin: 0 auto 36px;
	max-width: 58ch;
}
.platforms-close-cta { display: flex; justify-content: center; }

/* Platforms — editorial pull-quote statement with a compact "Also in play"
   platform strip below. Single section on a soft grey backdrop. */
.platforms-statement {
	padding: clamp(72px, 9vw, 120px) 0;
	background: var(--bg-2);
}
.platforms-statement .container { max-width: 920px; }
.platforms-statement-inner {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}
.platforms-statement-inner .eyebrow-mark { justify-content: center; }
.platforms-statement-mark {
	font-family: var(--font-sans);
	font-size: clamp(72px, 9vw, 120px);
	line-height: 0.6;
	color: var(--accent);
	font-weight: 700;
	margin: 4px 0 -8px;
	display: block;
}
.platforms-statement-quote {
	font-size: clamp(28px, 3.2vw, 44px);
	font-weight: 600;
	letter-spacing: -0.022em;
	line-height: 1.15;
	color: var(--ink);
	margin: 0;
	max-width: 22ch;
}
.platforms-statement-body {
	font-size: clamp(16px, 1.25vw, 19px);
	line-height: 1.65;
	color: var(--muted);
	margin: 4px auto 0;
	max-width: 62ch;
}
.platforms-statement-also {
	margin-top: clamp(40px, 5vw, 60px);
	padding-top: clamp(32px, 4vw, 48px);
	border-top: 1px solid var(--line);
	width: 100%;
	max-width: 720px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}
.platforms-statement-also-label {
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
}
.platforms-statement-pills {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.platforms-statement-pills li {
	font-family: var(--font-sans);
	font-size: 15px;
	font-weight: 500;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 10px 18px;
	transition: border-color 200ms ease, transform 200ms ease;
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
}
.platforms-statement-pills li:hover {
	border-color: var(--accent);
	transform: translateY(-1px);
}
.platforms-statement-pills li small {
	font-size: 12px;
	color: var(--muted);
	font-weight: 400;
}
.platforms-statement-also-note {
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--muted);
	margin: 4px 0 0;
	max-width: 56ch;
}
.platforms-statement-also-note strong { color: var(--ink); font-weight: 600; }
@media (prefers-reduced-motion: reduce) {
	.platforms-statement-pills li { transition: none; }
	.platforms-statement-pills li:hover { transform: none; }
}

