/* ===========================================================
   Platform Spotlight
   --------------------------------------------------------
   Opinionated comparison + architecture section for platform
   landing pages. Hardcoded for Webflow as a design preview
   — once approved we'll modularize to accept platform attrs.
   --------------------------------------------------------
   Sections, in order:
     1. Header (eyebrow + title + lead)
     2. Verdict (Best for / Not for chips)
     3. Our take (quote)
     4. Comparison table (5 platforms × 10 dimensions)
     5. When NOT to use (4-card grid)
     6. Architecture diagram (SVG)
     7. CTA to Stack Pressure Test
   =========================================================== */

.ced-pspot {
	--pspot-bg:        #07070C;
	--pspot-bg-soft:   #0B0B14;
	--pspot-card:      #11121A;
	--pspot-line:      rgba(255, 255, 255, 0.08);
	--pspot-line-hot:  color-mix(in oklab, var(--pspot-accent) 25%, transparent);
	--pspot-ink:       #F0EDE5;
	--pspot-ink-dim:   rgba(240, 237, 229, 0.62);
	--pspot-ink-faint: rgba(240, 237, 229, 0.42);
	--pspot-accent:    #CB6CE6;
	--pspot-accent-dim:#A655BC;
	--pspot-yes:       #7FD17F;
	--pspot-no:        #EE7C7C;

	background: var(--pspot-bg);
	color: var(--pspot-ink);
	padding: clamp(4rem, 8vw, 8rem) 0;
	position: relative;
	overflow: clip;

	/* Viewport-breakout pattern — escape the page constrained width. */
	max-width: none !important;
	width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	border-radius: 0 !important;
	border-top: 1px solid var(--pspot-line);
	border-bottom: 1px solid var(--pspot-line);
}

/* Ambient backdrop — soft purple wash. */
.ced-pspot::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(60% 40% at 20% 10%, color-mix(in oklab, var(--pspot-accent) 8%, transparent) 0%, transparent 70%),
		radial-gradient(50% 40% at 85% 85%, rgba(20, 110, 245, 0.05) 0%, transparent 70%);
	pointer-events: none;
}

.ced-pspot > * {
	position: relative;
	z-index: 1;
	max-width: var(--page-max, 1280px);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--gutter-x, 1.5rem);
	padding-right: var(--gutter-x, 1.5rem);
}

/* ── 1. HEADER ─────────────────────────────────────────────── */
.ced-pspot__head {
	display: grid;
	gap: 1rem;
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
	max-width: 980px;
}
.ced-pspot__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	letter-spacing: 0.18em;
	color: var(--pspot-ink-dim);
	width: fit-content;
	font-size: 0.72rem;
}
.ced-pspot__eyebrow-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--pspot-accent);
	box-shadow: 0 0 0 4px color-mix(in oklab, var(--pspot-accent) 18%, transparent);
}
.ced-pspot__title {
	font-size: clamp(2rem, 4.5vw, 3.6rem);
	font-weight: 500;
	letter-spacing: -0.025em;
	line-height: 1.05;
	margin: 0;
}
.ced-pspot__mark {
	color: var(--pspot-accent);
	font-style: italic;
	font-weight: 400;
}
.ced-pspot__lead {
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	line-height: 1.55;
	color: var(--pspot-ink-dim);
	margin: 0;
	max-width: 700px;
}

/* ── 2. VERDICT (Best for / Not for chips) ───────────────────── */
.ced-pspot__verdict {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.ced-pspot__verdict-col {
	background: var(--pspot-card);
	border: 1px solid var(--pspot-line);
	border-radius: 14px;
	padding: 1.4rem 1.5rem;
	display: grid;
	gap: 1rem;
}
.ced-pspot__verdict-col--yes {
	border-left: 3px solid var(--pspot-yes);
}
.ced-pspot__verdict-col--no {
	border-left: 3px solid var(--pspot-no);
}
.ced-pspot__verdict-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.72rem;
	font-weight: 600;
}
.ced-pspot__verdict-col--yes .ced-pspot__verdict-label { color: var(--pspot-yes); }
.ced-pspot__verdict-col--no  .ced-pspot__verdict-label { color: var(--pspot-no); }
.ced-pspot__chips {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
}
.ced-pspot__chip {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 500;
	border: 1px solid var(--pspot-line);
	background: rgba(255, 255, 255, 0.03);
	color: var(--pspot-ink);
}
.ced-pspot__chip--yes {
	border-color: rgba(127, 209, 127, 0.25);
	background: rgba(127, 209, 127, 0.06);
}
.ced-pspot__chip--no {
	border-color: rgba(238, 124, 124, 0.25);
	background: rgba(238, 124, 124, 0.06);
}

/* ── 3. OUR TAKE QUOTE ──────────────────────────────────────── */
.ced-pspot__take {
	/* margin: 0 auto … (not 0 0 …) so the block inherits the same
	   centered layout as .ced-pspot__verdict + .ced-pspot__compare —
	   otherwise margin-left/right collapse to 0 and the box sticks
	   to the section's left edge while the others stay centered. */
	margin: 0 auto clamp(3rem, 5vw, 4.5rem);
	padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 3rem);
	background: linear-gradient(135deg, color-mix(in oklab, var(--pspot-accent) 8%, transparent), color-mix(in oklab, var(--pspot-accent) 2%, transparent));
	border: 1px solid var(--pspot-line-hot);
	border-radius: 18px;
	position: relative;
}
.ced-pspot__take-mark {
	position: absolute;
	top: 0.6rem;
	left: 1.2rem;
	font-size: 5rem;
	line-height: 1;
	color: var(--pspot-accent);
	opacity: 0.18;
	font-family: Georgia, serif;
	font-weight: 700;
	pointer-events: none;
}
.ced-pspot__take-body {
	font-size: clamp(1.05rem, 1.6vw, 1.35rem);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: -0.01em;
	margin: 0 0 1.2rem;
	color: var(--pspot-ink);
	position: relative;
	z-index: 1;
}
.ced-pspot__take-credit {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.8rem;
	align-items: baseline;
	color: var(--pspot-ink-dim);
	font-size: 0.85rem;
}
.ced-pspot__take-author {
	font-weight: 600;
	color: var(--pspot-ink);
}
.ced-pspot__take-meta::before {
	content: "·";
	margin-right: 0.4rem;
	opacity: 0.5;
}

/* ── 4. COMPARISON TABLE ────────────────────────────────────── */
.ced-pspot__compare {
	margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.ced-pspot__compare-head {
	display: grid;
	gap: 0.6rem;
	margin-bottom: 1.5rem;
	max-width: 760px;
}
.ced-pspot__compare-title {
	font-size: clamp(1.4rem, 2.4vw, 1.9rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 0;
}
.ced-pspot__compare-sub {
	color: var(--pspot-ink-dim);
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
}
.ced-pspot__table-wrap {
	overflow-x: auto;
	border: 1px solid var(--pspot-line);
	border-radius: 14px;
	background: var(--pspot-card);
	scrollbar-width: thin;
	scrollbar-color: var(--pspot-accent) transparent;
	/* Padding-top reserves space INSIDE the wrap so the OUR PICK
	   badge (positioned at top: -10px on the th) has room without
	   getting clipped by the auto vertical overflow. */
	padding-top: 14px;
}
.ced-pspot__table-wrap::-webkit-scrollbar {
	height: 6px;
}
.ced-pspot__table-wrap::-webkit-scrollbar-thumb {
	background: var(--pspot-accent);
	border-radius: 4px;
}
.ced-pspot__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
	min-width: 720px;
}
.ced-pspot__th {
	padding: 1rem 0.9rem;
	text-align: center;
	font-weight: 600;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--pspot-ink-dim);
	border-bottom: 1px solid var(--pspot-line);
	background: rgba(255, 255, 255, 0.02);
	white-space: nowrap;
}
.ced-pspot__th--label {
	text-align: left;
	min-width: 180px;
}
.ced-pspot__th--highlight {
	color: var(--pspot-accent);
	background: color-mix(in oklab, var(--pspot-accent) 6%, transparent);
	position: relative;
}
.ced-pspot__th--highlight::before {
	content: "OUR PICK";
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--pspot-accent);
	color: #0E0E11;
	font-size: 0.55rem;
	font-weight: 800;
	padding: 3px 8px;
	border-radius: 999px;
	letter-spacing: 0.1em;
}
.ced-pspot__td {
	padding: 0.95rem 0.9rem;
	border-top: 1px solid var(--pspot-line);
	text-align: center;
	vertical-align: middle;
	color: var(--pspot-ink);
	font-weight: 400;
}
.ced-pspot__td--label {
	text-align: left;
	font-weight: 500;
	color: var(--pspot-ink-dim);
	font-size: 0.88rem;
	background: rgba(255, 255, 255, 0.015);
}
.ced-pspot__td--highlight {
	background: color-mix(in oklab, var(--pspot-accent) 5%, transparent);
	color: var(--pspot-ink);
	font-weight: 600;
}
.ced-pspot__table tbody tr:hover .ced-pspot__td:not(.ced-pspot__td--label) {
	background: rgba(255, 255, 255, 0.025);
}
.ced-pspot__table tbody tr:hover .ced-pspot__td--highlight {
	background: color-mix(in oklab, var(--pspot-accent) 9%, transparent);
}
.ced-pspot__stars {
	display: inline-flex;
	gap: 2px;
}
.ced-pspot__star {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
}
.ced-pspot__star.is-on {
	background: var(--pspot-accent);
	box-shadow: 0 0 4px color-mix(in oklab, var(--pspot-accent) 50%, transparent);
}
.ced-pspot__td--highlight .ced-pspot__star.is-on {
	background: var(--pspot-accent);
}
.ced-pspot__value {
	font-feature-settings: "tnum" 1;
	font-variant-numeric: tabular-nums;
}
.ced-pspot__footnote {
	font-size: 0.78rem;
	color: var(--pspot-ink-faint);
	margin: 0.9rem 0 0;
	line-height: 1.55;
	max-width: 780px;
}

/* ── 5. WHEN NOT TO USE ─────────────────────────────────────── */
.ced-pspot__nogo {
	margin-bottom: clamp(3rem, 5vw, 4.5rem);
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border: 1px solid rgba(238, 124, 124, 0.18);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(238, 124, 124, 0.04), rgba(238, 124, 124, 0.01));
}
.ced-pspot__nogo-head {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.6rem;
}
.ced-pspot__nogo-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(238, 124, 124, 0.1);
	color: var(--pspot-no);
	display: grid;
	place-items: center;
	border: 1px solid rgba(238, 124, 124, 0.25);
}
.ced-pspot__nogo-title {
	font-size: clamp(1.3rem, 2.2vw, 1.7rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 0 0 0.35rem;
}
.ced-pspot__nogo-title em {
	font-style: normal;
	color: var(--pspot-no);
	font-weight: 600;
}
.ced-pspot__nogo-sub {
	color: var(--pspot-ink-dim);
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
	max-width: 720px;
}
.ced-pspot__nogo-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
.ced-pspot__nogo-card {
	background: var(--pspot-card);
	border: 1px solid var(--pspot-line);
	border-radius: 14px;
	padding: 1.3rem;
	display: grid;
	grid-template-rows: auto auto auto auto;
	gap: 0.55rem;
	transition: transform .25s ease, border-color .25s ease;
}
.ced-pspot__nogo-card:hover {
	transform: translateY(-2px);
	border-color: var(--pspot-line-hot);
}
.ced-pspot__nogo-card-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: color-mix(in oklab, var(--pspot-accent) 10%, transparent);
	color: var(--pspot-accent);
	display: grid;
	place-items: center;
	margin-bottom: 0.2rem;
}
.ced-pspot__nogo-q {
	font-size: 1.02rem;
	font-weight: 600;
	margin: 0;
	color: var(--pspot-ink);
	line-height: 1.35;
}
.ced-pspot__nogo-a {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--pspot-accent);
	font-weight: 600;
	font-size: 0.92rem;
}
.ced-pspot__nogo-arrow {
	font-weight: 700;
	opacity: 0.7;
}
.ced-pspot__nogo-why {
	color: var(--pspot-ink-dim);
	font-size: 0.85rem;
	line-height: 1.55;
	margin: 0;
}

/* ── 6. ARCHITECTURE DIAGRAM ────────────────────────────────── */
.ced-pspot__arch {
	margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.ced-pspot__arch-head {
	display: grid;
	gap: 0.6rem;
	margin-bottom: 1.5rem;
	max-width: 760px;
}
.ced-pspot__arch-title {
	font-size: clamp(1.4rem, 2.4vw, 1.9rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 0;
}
.ced-pspot__arch-sub {
	color: var(--pspot-ink-dim);
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
}
.ced-pspot__arch-diagram {
	background: linear-gradient(180deg, var(--pspot-card), var(--pspot-bg-soft));
	border: 1px solid var(--pspot-line);
	border-radius: 18px;
	padding: clamp(1rem, 3vw, 2rem);
	overflow: hidden;
	position: relative;
}
.ced-pspot__arch-diagram::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(50% 50% at 50% 50%, color-mix(in oklab, var(--pspot-accent) 6%, transparent), transparent 70%);
	pointer-events: none;
}
.ced-pspot__arch-svg {
	width: 100%;
	height: auto;
	max-width: 900px;
	display: block;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.ced-pspot__arch-legend {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	margin: 1rem 0 0;
	padding: 0;
	font-size: 0.82rem;
	color: var(--pspot-ink-dim);
}
.ced-pspot__arch-legend li {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}
.ced-pspot__arch-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 999px;
}
.ced-pspot__arch-dot--core {
	background: var(--pspot-accent);
}
.ced-pspot__arch-dot--int {
	background: transparent;
	border: 1.5px solid var(--pspot-accent);
}
.ced-pspot__arch-dot--link {
	background: var(--pspot-accent);
	box-shadow: 0 0 0 3px color-mix(in oklab, var(--pspot-accent) 20%, transparent);
	animation: pspot-pulse 1.8s ease-in-out infinite;
}
@keyframes pspot-pulse {
	0%, 100% { box-shadow: 0 0 0 3px color-mix(in oklab, var(--pspot-accent) 20%, transparent); }
	50%      { box-shadow: 0 0 0 6px color-mix(in oklab, var(--pspot-accent) 5%, transparent); }
}
.ced-pspot__arch-note {
	margin: 1.2rem 0 0;
	padding: 0.95rem 1.1rem;
	background: rgba(255, 255, 255, 0.02);
	border-left: 3px solid var(--pspot-accent);
	border-radius: 6px;
	color: var(--pspot-ink-dim);
	font-size: 0.88rem;
	line-height: 1.55;
}
.ced-pspot__arch-note strong {
	color: var(--pspot-ink);
	font-weight: 700;
}

/* ── 7. CAPABILITIES SHOWCASE ───────────────────────────────── */
.ced-pspot__caps {
	margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.ced-pspot__caps-head {
	display: grid;
	gap: 0.6rem;
	margin-bottom: 1.5rem;
	max-width: 760px;
}
.ced-pspot__caps-title {
	font-size: clamp(1.4rem, 2.4vw, 1.9rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 0;
}
.ced-pspot__caps-sub {
	color: var(--pspot-ink-dim);
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
}

/* Tab bar — single-line horizontal scroll when narrow.
   We don't wrap because the parent's 999px border-radius creates
   a teardrop-shaped pill on multi-line layouts that visually
   distorts the active tab's corners. Horizontal scroll keeps the
   pill shape clean and is the standard mobile tab pattern. */
.ced-pspot__caps-tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.4rem;
	padding: 0.4rem;
	background: var(--pspot-card);
	border: 1px solid var(--pspot-line);
	border-radius: 999px;
	margin-bottom: 1.5rem;
	width: fit-content;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	position: relative;
	/* Soft fade on the right edge hints at scrollable content
	   without showing an ugly scrollbar. Mask kicks in only when
	   content overflows; on wide viewports the fade is invisible
	   because no overflow exists. */
	mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent);
	-webkit-mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent);
}
.ced-pspot__caps-tabs::-webkit-scrollbar {
	display: none;
}
.ced-pspot__caps-tab {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.5rem 0.95rem;
	border-radius: 999px;
	background: transparent;
	border: 0;
	color: var(--pspot-ink-dim);
	font-size: 0.82rem;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
	white-space: nowrap;
}
.ced-pspot__caps-tab:hover {
	color: var(--pspot-ink);
	background: rgba(255, 255, 255, 0.04);
}
.ced-pspot__caps-tab.is-active {
	background: var(--pspot-accent);
	color: #0E0E11;
}
.ced-pspot__caps-tab-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--pspot-ink-dim);
	font-size: 0.7rem;
	font-weight: 600;
	font-feature-settings: "tnum" 1;
}
.ced-pspot__caps-tab.is-active .ced-pspot__caps-tab-count {
	background: rgba(14, 14, 17, 0.2);
	color: rgba(14, 14, 17, 0.8);
}

/* Card grid */
.ced-pspot__caps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.9rem;
}
.ced-pspot__caps-card {
	background: var(--pspot-card);
	border: 1px solid var(--pspot-line);
	border-radius: 14px;
	padding: 1.2rem;
	display: grid;
	grid-template-rows: auto auto auto auto;
	gap: 0.55rem;
	transition: transform .25s ease, border-color .25s ease, opacity .3s ease;
}
.ced-pspot__caps-card:hover {
	transform: translateY(-2px);
	border-color: var(--pspot-line-hot);
}
.ced-pspot__caps-card.is-hidden {
	display: none;
}
.ced-pspot__caps-card-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: color-mix(in oklab, var(--pspot-accent) 10%, transparent);
	color: var(--pspot-accent);
	display: grid;
	place-items: center;
	margin-bottom: 0.2rem;
}
/* Per-category color accents for the icon background */
.ced-pspot__caps-card-icon--learning {
	background: rgba(127, 209, 209, 0.10);
	color: #7FD1D1;
}
.ced-pspot__caps-card-icon--community {
	background: rgba(127, 209, 127, 0.10);
	color: #7FD17F;
}
.ced-pspot__caps-card-icon--commerce {
	background: color-mix(in oklab, var(--pspot-accent) 10%, transparent);
	color: #CB6CE6;
}
.ced-pspot__caps-card-icon--marketing {
	background: rgba(247, 184, 81, 0.10);
	color: #F7B851;
}
.ced-pspot__caps-card-icon--custom {
	background: rgba(120, 159, 245, 0.10);
	color: #789FF5;
}
.ced-pspot__caps-card-icon--content {
	background: rgba(247, 184, 81, 0.10);
	color: #F7B851;
}
.ced-pspot__caps-card-icon--ai {
	background: rgba(232, 102, 178, 0.10);
	color: #E866B2;
}
.ced-pspot__caps-card-icon--devops {
	background: rgba(120, 159, 245, 0.10);
	color: #789FF5;
}

.ced-pspot__caps-card-name {
	font-size: 1.02rem;
	font-weight: 600;
	margin: 0;
	color: var(--pspot-ink);
	letter-spacing: -0.01em;
}
.ced-pspot__caps-card-desc {
	color: var(--pspot-ink-dim);
	font-size: 0.85rem;
	line-height: 1.5;
	margin: 0;
}
.ced-pspot__caps-card-tags {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem;
	margin: 0.2rem 0 0;
	padding: 0;
}
.ced-pspot__caps-card-tag {
	display: inline-flex;
	align-items: center;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 500;
	color: var(--pspot-ink-dim);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--pspot-line);
}

.ced-pspot__caps-foot {
	margin: 1.2rem 0 0;
	color: var(--pspot-ink-dim);
	font-size: 0.88rem;
	text-align: center;
}
.ced-pspot__caps-foot a {
	color: var(--pspot-accent);
	text-decoration: none;
	border-bottom: 1px solid color-mix(in oklab, var(--pspot-accent) 40%, transparent);
	transition: border-color .2s ease;
}
.ced-pspot__caps-foot a:hover {
	border-bottom-color: var(--pspot-accent);
}

/* ── Outbound links (SEO + topical relevance) ──────────────────
   Every platform / tool name in the comparison table, architecture
   diagram, and capabilities cards links out to its canonical URL.
   Styling stays subtle — these reads as text first, links second,
   so the visual hierarchy of the section stays intact. */
.ced-pspot__link {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px dotted color-mix(in oklab, var(--pspot-accent) 40%, transparent);
	transition: border-bottom-color .2s ease, color .2s ease;
}
.ced-pspot__link:hover,
.ced-pspot__link:focus-visible {
	border-bottom-color: var(--pspot-accent);
	color: var(--pspot-accent);
}

/* Comparison-table column headers — already uppercase + small,
   so the dotted underline can be heavier without dominating. */
.ced-pspot__link--th {
	border-bottom-color: rgba(255, 255, 255, 0.15);
}
.ced-pspot__th--highlight .ced-pspot__link--th {
	border-bottom-color: color-mix(in oklab, var(--pspot-accent) 35%, transparent);
}
.ced-pspot__link--th:hover,
.ced-pspot__link--th:focus-visible {
	color: var(--pspot-accent);
}

/* Capability card name — already bold + larger, so links here
   need no underline by default; just the standard hover treatment. */
.ced-pspot__caps-card-link {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-bottom-color .2s ease, color .2s ease;
}
.ced-pspot__caps-card:hover .ced-pspot__caps-card-link,
.ced-pspot__caps-card-link:hover,
.ced-pspot__caps-card-link:focus-visible {
	color: var(--pspot-accent);
	border-bottom-color: var(--pspot-accent);
}

/* SVG architecture diagram — links wrap the entire node group.
   We don't add visual underline here; cursor + hover scale signals
   clickability. The hover lifts the box subtly. */
.ced-pspot__arch-link rect {
	transition: filter .2s ease, stroke .2s ease;
}
.ced-pspot__arch-link:hover rect {
	stroke: var(--pspot-accent);
	filter: drop-shadow(0 0 8px color-mix(in oklab, var(--pspot-accent) 35%, transparent));
}
.ced-pspot__arch-link {
	cursor: pointer;
}

/* ── 8. HOW WE ENGAGE ────────────────────────────────────────
   The actual service offer — two columns, two audiences.
   White-label (left): we go invisible behind the agency's brand.
   Direct (right): full agency engagement under our own name.
   --------------------------------------------------------- */
.ced-pspot__engage {
	margin-bottom: clamp(3rem, 5vw, 4.5rem);
	padding: clamp(1.75rem, 3vw, 2.5rem);
	background: linear-gradient(180deg, color-mix(in oklab, var(--pspot-accent) 4%, transparent), color-mix(in oklab, var(--pspot-accent) 1%, transparent));
	border: 1px solid var(--pspot-line-hot);
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}
.ced-pspot__engage::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(60% 30% at 50% 0%, color-mix(in oklab, var(--pspot-accent) 10%, transparent) 0%, transparent 70%);
	pointer-events: none;
}
.ced-pspot__engage-head {
	display: grid;
	gap: 0.7rem;
	margin-bottom: 1.8rem;
	max-width: 780px;
	position: relative;
	z-index: 1;
}
.ced-pspot__engage-eyebrow-top {
	color: var(--pspot-accent) !important;
}
.ced-pspot__engage-title {
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	font-weight: 500;
	letter-spacing: -0.025em;
	margin: 0;
	line-height: 1.1;
}
.ced-pspot__engage-sub {
	color: var(--pspot-ink-dim);
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.55;
}

/* Two-column grid */
.ced-pspot__engage-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
	position: relative;
	z-index: 1;
}
.ced-pspot__engage-col {
	background: var(--pspot-card);
	border: 1px solid var(--pspot-line);
	border-radius: 16px;
	padding: 1.5rem;
	display: grid;
	grid-template-rows: auto auto auto 1fr auto auto;
	gap: 0.7rem;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.ced-pspot__engage-col:hover {
	transform: translateY(-2px);
	border-color: var(--pspot-line-hot);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* White-label column — dim purple accent + ghost CTA. Reads as the
   "quieter / secondary" option but stays in the brand palette. */
.ced-pspot__engage-col--wl {
	border-left: 3px solid var(--pspot-accent-dim);
}
.ced-pspot__engage-col--wl .ced-pspot__engage-eyebrow {
	color: var(--pspot-accent-dim);
}

/* Direct column — full brand purple + filled CTA. Reads as the
   "louder / primary" option. */
.ced-pspot__engage-col--dir {
	border-left: 3px solid var(--pspot-accent);
}
.ced-pspot__engage-col--dir .ced-pspot__engage-eyebrow {
	color: var(--pspot-accent);
}

.ced-pspot__engage-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.7rem;
	font-weight: 600;
}
.ced-pspot__engage-col-title {
	font-size: clamp(1.15rem, 1.9vw, 1.4rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	margin: 0;
	color: var(--pspot-ink);
	line-height: 1.2;
}
.ced-pspot__engage-intro {
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--pspot-ink-dim);
	margin: 0;
}

.ced-pspot__engage-list {
	list-style: none;
	margin: 0.4rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
}
.ced-pspot__engage-list li {
	display: flex;
	gap: 0.6rem;
	padding-left: 0;
	color: var(--pspot-ink);
	font-size: 0.9rem;
	line-height: 1.5;
	position: relative;
}
.ced-pspot__engage-list li::before {
	content: "";
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	margin-top: 0.55rem;
	background: var(--pspot-accent);
	opacity: 0.6;
}
.ced-pspot__engage-col--wl .ced-pspot__engage-list li::before {
	background: var(--pspot-accent-dim);
}
.ced-pspot__engage-list li em {
	font-style: normal;
	color: var(--pspot-accent);
	font-weight: 500;
}
.ced-pspot__engage-col--wl .ced-pspot__engage-list li em {
	color: var(--pspot-accent-dim);
}

.ced-pspot__engage-model {
	margin: 0.8rem 0 0;
	padding: 0.8rem 1rem;
	background: rgba(255, 255, 255, 0.025);
	border-radius: 10px;
	color: var(--pspot-ink-dim);
	font-size: 0.85rem;
	line-height: 1.5;
	display: grid;
	gap: 0.25rem;
}
.ced-pspot__engage-model-label {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.65rem;
	font-weight: 700;
	color: var(--pspot-ink);
}

.ced-pspot__engage-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.2rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.92rem;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
	margin-top: 0.3rem;
}
/* White-label CTA — ghost / outlined purple. Secondary visual weight. */
.ced-pspot__engage-cta--wl {
	background: transparent;
	color: var(--pspot-ink);
	border: 1px solid var(--pspot-accent);
}
.ced-pspot__engage-cta--wl:hover {
	background: var(--pspot-accent);
	color: #0E0E11;
	transform: translateY(-1px);
	box-shadow: 0 8px 22px color-mix(in oklab, var(--pspot-accent) 25%, transparent);
}
.ced-pspot__engage-cta--dir {
	background: var(--pspot-accent);
	color: #0E0E11;
	border: 1px solid var(--pspot-accent);
}
.ced-pspot__engage-cta--dir:hover {
	background: #D984ED;
	color: #0E0E11;
	transform: translateY(-1px);
	box-shadow: 0 8px 22px color-mix(in oklab, var(--pspot-accent) 35%, transparent);
}
.ced-pspot__engage-cta svg {
	transition: transform .25s ease;
}
.ced-pspot__engage-cta:hover svg {
	transform: translate(2px, -2px);
}

.ced-pspot__engage-foot {
	margin: 1.5rem 0 0;
	color: var(--pspot-ink-dim);
	font-size: 0.88rem;
	text-align: center;
	position: relative;
	z-index: 1;
}
.ced-pspot__engage-foot a,
.ced-pspot__engage-foot-btn {
	color: var(--pspot-accent);
	text-decoration: none;
	background: none;
	border: 0;
	padding: 0;
	font-family: inherit;
	font-size: inherit;
	cursor: pointer;
	border-bottom: 1px solid color-mix(in oklab, var(--pspot-accent) 40%, transparent);
	transition: border-color .2s ease;
	margin-left: 0.3rem;
}
.ced-pspot__engage-foot a:hover,
.ced-pspot__engage-foot-btn:hover {
	border-bottom-color: var(--pspot-accent);
}

/* ── ENGAGEMENT MODAL — popup form for all 3 engagement CTAs ─── */
.ced-pspot__modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 1.5rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease;
}
.ced-pspot__modal:not([hidden]) {
	opacity: 1;
	pointer-events: auto;
}
.ced-pspot__modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(7, 7, 12, 0.78);
	backdrop-filter: blur(8px);
	cursor: pointer;
}
.ced-pspot__modal-panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
	background: var(--pspot-bg-soft);
	border: 1px solid var(--pspot-line-hot);
	border-radius: 18px;
	padding: 2rem;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
	max-height: calc(100vh - 3rem);
	overflow-y: auto;
}
.ced-pspot__modal-x {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--pspot-line);
	color: var(--pspot-ink-dim);
	width: 34px;
	height: 34px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.ced-pspot__modal-x:hover {
	background: var(--pspot-accent);
	color: #0E0E11;
	border-color: var(--pspot-accent);
}

.ced-pspot__modal-head {
	display: grid;
	gap: 0.55rem;
	margin-bottom: 1.4rem;
	padding-right: 2.5rem; /* keep clear of close button */
}
.ced-pspot__modal-eyebrow {
	color: var(--pspot-accent) !important;
	font-size: 0.7rem;
}
.ced-pspot__modal-title {
	font-size: clamp(1.2rem, 2.2vw, 1.55rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 0;
	line-height: 1.15;
}
.ced-pspot__modal-sub {
	color: var(--pspot-ink-dim);
	font-size: 0.92rem;
	line-height: 1.5;
	margin: 0;
}

.ced-pspot__modal-form {
	display: grid;
	gap: 0.9rem;
}
.ced-pspot__modal-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.9rem;
}
.ced-pspot__modal-field {
	display: grid;
	gap: 0.35rem;
}
.ced-pspot__modal-label {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--pspot-ink);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.ced-pspot__modal-opt {
	text-transform: none;
	font-weight: 400;
	color: var(--pspot-ink-faint);
	letter-spacing: 0;
	margin-left: 0.3rem;
}
.ced-pspot__modal-field input,
.ced-pspot__modal-field textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--pspot-line);
	border-radius: 10px;
	padding: 0.7rem 0.85rem;
	color: var(--pspot-ink);
	font-family: inherit;
	font-size: 0.92rem;
	line-height: 1.4;
	transition: border-color .2s ease, background .2s ease;
}
.ced-pspot__modal-field input::placeholder,
.ced-pspot__modal-field textarea::placeholder {
	color: var(--pspot-ink-faint);
}
.ced-pspot__modal-field input:focus,
.ced-pspot__modal-field textarea:focus {
	outline: none;
	border-color: var(--pspot-accent);
	background: color-mix(in oklab, var(--pspot-accent) 4%, transparent);
}
.ced-pspot__modal-field textarea {
	resize: vertical;
	min-height: 90px;
}

.ced-pspot__modal-actions {
	display: grid;
	gap: 0.65rem;
	margin-top: 0.4rem;
}
.ced-pspot__modal-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: var(--pspot-accent);
	color: #0E0E11;
	border: 1px solid var(--pspot-accent);
	padding: 0.85rem 1.3rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.92rem;
	font-family: inherit;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ced-pspot__modal-submit:hover {
	transform: translateY(-1px);
	background: #D984ED;
	box-shadow: 0 8px 22px color-mix(in oklab, var(--pspot-accent) 35%, transparent);
}
.ced-pspot__modal-submit svg {
	transition: transform .25s ease;
}
.ced-pspot__modal-submit:hover svg {
	transform: translate(2px, -2px);
}
.ced-pspot__modal-submit[disabled] {
	opacity: 0.6;
	cursor: progress;
	transform: none;
	box-shadow: none;
}
.ced-pspot__modal-privacy {
	color: var(--pspot-ink-faint);
	font-size: 0.78rem;
	margin: 0;
	line-height: 1.5;
	text-align: center;
}

.ced-pspot__modal-error {
	background: rgba(238, 124, 124, 0.08);
	border: 1px solid rgba(238, 124, 124, 0.3);
	color: var(--pspot-no);
	padding: 0.6rem 0.85rem;
	border-radius: 10px;
	font-size: 0.85rem;
	line-height: 1.4;
	margin-top: 0.3rem;
}

/* Success state — explicit [hidden] override since `display: grid`
   below would otherwise win against the browser's [hidden] default. */
.ced-pspot__modal-success {
	display: grid;
	gap: 0.7rem;
	place-items: center;
	text-align: center;
	padding: 1rem 0;
}
.ced-pspot__modal-success[hidden],
.ced-pspot__modal-error[hidden] {
	display: none !important;
}
.ced-pspot__modal-success-icon {
	width: 56px;
	height: 56px;
	border-radius: 999px;
	background: rgba(127, 209, 127, 0.12);
	color: var(--pspot-yes);
	display: grid;
	place-items: center;
}
.ced-pspot__modal-success-title {
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 0;
}
.ced-pspot__modal-success-body {
	color: var(--pspot-ink-dim);
	font-size: 0.92rem;
	line-height: 1.5;
	margin: 0;
	max-width: 380px;
}
.ced-pspot__modal-success-close {
	margin-top: 0.6rem;
	padding: 0.7rem 1.3rem;
	background: transparent;
	color: var(--pspot-ink);
	border: 1px solid var(--pspot-line);
	border-radius: 999px;
	font-family: inherit;
	font-weight: 500;
	font-size: 0.9rem;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease;
}
.ced-pspot__modal-success-close:hover {
	background: var(--pspot-accent);
	color: #0E0E11;
	border-color: var(--pspot-accent);
}

/* Modal responsive rules now consolidated in the main responsive
   section below (search for "RESPONSIVE — aligned to the standard
   sm/md/lg/xl/2xl scale"). */

@media (prefers-reduced-motion: reduce) {
	.ced-pspot__modal,
	.ced-pspot__modal-submit,
	.ced-pspot__modal-x {
		transition: none;
	}
}

/* ── 9. PRICING (engineering / mobile platforms only) ────────
   Interactive: toggle between Hourly / Monthly / Fixed project.
   3 tier cards (Mid · Senior · Lead). Senior gets a featured badge.
   Each card's CTA opens the engagement modal pre-filled with tier. */
.ced-pspot__pricing {
	margin-bottom: clamp(3rem, 5vw, 4.5rem);
	padding: clamp(1.75rem, 3vw, 2.5rem);
	background: linear-gradient(180deg, color-mix(in oklab, var(--pspot-accent) 4%, transparent), color-mix(in oklab, var(--pspot-accent) 1%, transparent));
	border: 1px solid var(--pspot-line);
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}
.ced-pspot__pricing::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(50% 30% at 50% 0%, color-mix(in oklab, var(--pspot-accent) 8%, transparent) 0%, transparent 70%);
	pointer-events: none;
}
.ced-pspot__pricing-head {
	display: grid;
	gap: 0.7rem;
	margin-bottom: 1.6rem;
	max-width: 780px;
	position: relative;
	z-index: 1;
}
.ced-pspot__pricing-eyebrow {
	color: var(--pspot-accent) !important;
}
.ced-pspot__pricing-title {
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	font-weight: 500;
	letter-spacing: -0.025em;
	line-height: 1.1;
	margin: 0;
}
.ced-pspot__pricing-sub {
	color: var(--pspot-ink-dim);
	font-size: 0.98rem;
	line-height: 1.55;
	margin: 0;
}

/* Toggle row holds segmented control + "how we calculate" disclosure */
.ced-pspot__pricing-toggle-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
}

/* Toggle (segmented control) — same horizontal-scroll pattern as
   capabilities tabs so the pill shape stays clean on narrow viewports. */
.ced-pspot__pricing-toggle {
	display: inline-flex;
	gap: 0;
	padding: 0.35rem;
	background: var(--pspot-card);
	border: 1px solid var(--pspot-line);
	border-radius: 999px;
	flex-wrap: nowrap;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.ced-pspot__pricing-toggle::-webkit-scrollbar {
	display: none;
}
.ced-pspot__pricing-toggle-btn {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.05rem;
	padding: 0.6rem 1.1rem;
	border-radius: 999px;
	background: transparent;
	border: 0;
	color: var(--pspot-ink-dim);
	font-family: inherit;
	font-size: 0.85rem;
	font-weight: 500;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
	white-space: nowrap;
}
.ced-pspot__pricing-toggle-btn:hover {
	color: var(--pspot-ink);
	background: rgba(255, 255, 255, 0.04);
}
.ced-pspot__pricing-toggle-btn.is-active {
	background: var(--pspot-accent);
	color: #0E0E11;
}
.ced-pspot__pricing-toggle-label {
	font-weight: 600;
}
.ced-pspot__pricing-toggle-hint {
	font-size: 0.7rem;
	opacity: 0.7;
	font-weight: 400;
}
.ced-pspot__pricing-toggle-btn.is-active .ced-pspot__pricing-toggle-hint {
	opacity: 0.75;
}

/* Card grid */
.ced-pspot__pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	position: relative;
	z-index: 1;
}
.ced-pspot__pricing-card {
	background: var(--pspot-card);
	border: 1px solid var(--pspot-line);
	border-radius: 18px;
	padding: 1.5rem;
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	gap: 0.95rem;
	position: relative;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.ced-pspot__pricing-card:hover {
	transform: translateY(-3px);
	border-color: var(--pspot-line-hot);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.ced-pspot__pricing-card.is-featured {
	border-color: var(--pspot-accent);
	background: linear-gradient(180deg, color-mix(in oklab, var(--pspot-accent) 6%, transparent), var(--pspot-card));
	box-shadow: 0 12px 32px color-mix(in oklab, var(--pspot-accent) 15%, transparent);
}
.ced-pspot__pricing-badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--pspot-accent);
	color: #0E0E11;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
	white-space: nowrap;
}

.ced-pspot__pricing-card-head {
	display: grid;
	gap: 0.25rem;
}
.ced-pspot__pricing-card-years {
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--pspot-ink-dim);
	font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.ced-pspot__pricing-card-tier {
	font-size: 1.3rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin: 0;
	color: var(--pspot-ink);
}
.is-featured .ced-pspot__pricing-card-tier {
	color: var(--pspot-accent);
}

.ced-pspot__pricing-card-price {
	display: flex;
	align-items: baseline;
	gap: 0.2rem;
	font-feature-settings: "tnum" 1;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.03em;
}
.ced-pspot__pricing-card-currency {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--pspot-ink-dim);
	margin-right: 0.05rem;
}
.ced-pspot__pricing-card-amount {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	color: var(--pspot-ink);
	transition: color .2s ease;
}
.is-featured .ced-pspot__pricing-card-amount {
	color: var(--pspot-accent);
}
.ced-pspot__pricing-card-unit {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--pspot-ink-dim);
	margin-left: 0.4rem;
}

.ced-pspot__pricing-card-tagline {
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--pspot-ink-dim);
	margin: 0;
}

.ced-pspot__pricing-card-best {
	display: grid;
	gap: 0.5rem;
}
.ced-pspot__pricing-card-best-label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--pspot-ink);
}
.ced-pspot__pricing-card-best ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.4rem;
}
.ced-pspot__pricing-card-best li {
	color: var(--pspot-ink);
	font-size: 0.85rem;
	line-height: 1.45;
	display: flex;
	gap: 0.55rem;
	position: relative;
}
.ced-pspot__pricing-card-best li::before {
	content: "";
	flex-shrink: 0;
	width: 5px;
	height: 5px;
	border-radius: 999px;
	margin-top: 0.55rem;
	background: var(--pspot-accent);
	opacity: 0.6;
}

.ced-pspot__pricing-card-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.1rem;
	border-radius: 999px;
	background: transparent;
	color: var(--pspot-ink);
	border: 1px solid var(--pspot-accent);
	font-family: inherit;
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
	margin-top: 0.4rem;
}
.ced-pspot__pricing-card-cta:hover {
	background: var(--pspot-accent);
	color: #0E0E11;
	transform: translateY(-1px);
	box-shadow: 0 8px 22px color-mix(in oklab, var(--pspot-accent) 30%, transparent);
}
.ced-pspot__pricing-card-cta.is-featured {
	background: var(--pspot-accent);
	color: #0E0E11;
}
.ced-pspot__pricing-card-cta.is-featured:hover {
	background: #D984ED;
	color: #0E0E11;
}
.ced-pspot__pricing-card-cta svg {
	transition: transform .25s ease;
}
.ced-pspot__pricing-card-cta:hover svg {
	transform: translate(2px, -2px);
}

.ced-pspot__pricing-note {
	margin: 1.2rem 0 0;
	color: var(--pspot-ink-faint);
	font-size: 0.78rem;
	line-height: 1.55;
	max-width: 820px;
	position: relative;
	z-index: 1;
}

/* Hidden state for the alternative grid (toggle-driven). */
.ced-pspot__pricing-grid[hidden],
.ced-pspot__pricing-fixed[hidden] {
	display: none !important;
}

/* Fixed-cost scope-first card — single full-width card shown when the
   "Fixed project" toggle is active. Deliberately doesn't show a price;
   the CTA forces a scoping call so we can quote properly. */
.ced-pspot__pricing-fixed {
	display: grid;
	place-items: center;
	padding: 0.5rem 0;
	position: relative;
	z-index: 1;
}
.ced-pspot__pricing-fixed-card {
	width: 100%;
	max-width: 780px;
	background: linear-gradient(180deg, color-mix(in oklab, var(--pspot-accent) 10%, transparent), color-mix(in oklab, var(--pspot-accent) 2%, transparent));
	border: 1px solid var(--pspot-line-hot);
	border-radius: 20px;
	padding: clamp(1.75rem, 3.5vw, 2.75rem);
	text-align: center;
	display: grid;
	gap: 1.1rem;
	justify-items: center;
	position: relative;
	overflow: hidden;
}
.ced-pspot__pricing-fixed-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(60% 50% at 50% 0%, color-mix(in oklab, var(--pspot-accent) 12%, transparent) 0%, transparent 70%);
	pointer-events: none;
}
.ced-pspot__pricing-fixed-icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: color-mix(in oklab, var(--pspot-accent) 12%, transparent);
	border: 1px solid var(--pspot-line-hot);
	color: var(--pspot-accent);
	position: relative;
	z-index: 1;
}
.ced-pspot__pricing-fixed-title {
	font-size: clamp(1.4rem, 2.5vw, 1.9rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 0;
	color: var(--pspot-ink);
	max-width: 22ch;
	position: relative;
	z-index: 1;
}
.ced-pspot__pricing-fixed-body {
	color: var(--pspot-ink-dim);
	font-size: 0.98rem;
	line-height: 1.6;
	margin: 0;
	max-width: 56ch;
	position: relative;
	z-index: 1;
}
.ced-pspot__pricing-fixed-body strong {
	color: var(--pspot-ink);
	font-weight: 600;
}

.ced-pspot__pricing-fixed-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 1rem 1.6rem;
	border-radius: 999px;
	background: var(--pspot-accent);
	color: #0E0E11;
	border: 1px solid var(--pspot-accent);
	font-family: inherit;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
	margin-top: 0.3rem;
	position: relative;
	z-index: 1;
}
.ced-pspot__pricing-fixed-cta:hover {
	transform: translateY(-2px);
	background: #D984ED;
	box-shadow: 0 14px 38px color-mix(in oklab, var(--pspot-accent) 40%, transparent);
}
.ced-pspot__pricing-fixed-cta svg {
	color: #0E0E11;
}

/* "What we'll ask on the call" agenda — lowers buyer anxiety by
   showing what the 15-min scoping call actually covers. */
.ced-pspot__pricing-fixed-agenda {
	width: 100%;
	max-width: 540px;
	margin-top: 0.7rem;
	padding: 1.1rem 1.3rem;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid var(--pspot-line);
	border-radius: 14px;
	text-align: left;
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0.7rem;
}
.ced-pspot__pricing-fixed-agenda-label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--pspot-accent);
}
.ced-pspot__pricing-fixed-agenda ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}
.ced-pspot__pricing-fixed-agenda li {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	color: var(--pspot-ink);
	font-size: 0.88rem;
	line-height: 1.5;
}
.ced-pspot__pricing-fixed-agenda li svg {
	flex-shrink: 0;
	margin-top: 0.2rem;
	color: var(--pspot-accent);
}
.ced-pspot__pricing-fixed-agenda li em {
	font-style: normal;
	color: var(--pspot-ink-dim);
	font-weight: 400;
}
.ced-pspot__pricing-fixed-agenda-foot {
	margin: 0.3rem 0 0;
	font-size: 0.78rem;
	color: var(--pspot-ink-faint);
	line-height: 1.5;
	font-style: italic;
}

.ced-pspot__pricing-fixed-why {
	margin-top: 0.5rem;
	font-size: 0.85rem;
	color: var(--pspot-ink-dim);
	max-width: 56ch;
	text-align: left;
	position: relative;
	z-index: 1;
}
.ced-pspot__pricing-fixed-why > summary {
	cursor: pointer;
	color: var(--pspot-accent);
	border-bottom: 1px dotted color-mix(in oklab, var(--pspot-accent) 40%, transparent);
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding-bottom: 1px;
	list-style: none;
	user-select: none;
	transition: border-bottom-color .2s ease;
	text-align: center;
}
.ced-pspot__pricing-fixed-why > summary::-webkit-details-marker {
	display: none;
}
.ced-pspot__pricing-fixed-why > summary::after {
	content: "+";
	font-weight: 600;
	transition: transform .2s ease;
}
.ced-pspot__pricing-fixed-why[open] > summary::after {
	content: "−";
}
.ced-pspot__pricing-fixed-why > summary:hover {
	border-bottom-color: var(--pspot-accent);
}
.ced-pspot__pricing-fixed-why p {
	margin: 0.85rem 0 0;
	line-height: 1.55;
	color: var(--pspot-ink-dim);
}
.ced-pspot__pricing-fixed-why p strong {
	color: var(--pspot-ink);
	font-weight: 600;
}

/* "How we calculate this" disclosure — small details element next to
   the toggle. Closed by default; opens an inline definition list. */
.ced-pspot__pricing-formula {
	font-size: 0.82rem;
	color: var(--pspot-ink-dim);
	max-width: 100%;
}
.ced-pspot__pricing-formula > summary {
	cursor: pointer;
	color: var(--pspot-accent);
	border-bottom: 1px dotted color-mix(in oklab, var(--pspot-accent) 40%, transparent);
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding-bottom: 1px;
	list-style: none;
	user-select: none;
	transition: border-bottom-color .2s ease;
}
.ced-pspot__pricing-formula > summary::-webkit-details-marker {
	display: none;
}
.ced-pspot__pricing-formula > summary::after {
	content: "+";
	display: inline-block;
	font-weight: 600;
	transition: transform .2s ease;
}
.ced-pspot__pricing-formula[open] > summary::after {
	content: "−";
}
.ced-pspot__pricing-formula > summary:hover {
	border-bottom-color: var(--pspot-accent);
}
.ced-pspot__pricing-formula-body {
	margin-top: 1rem;
	padding: 1.1rem 1.25rem;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid var(--pspot-line);
	border-radius: 12px;
	max-width: 100%;
}
.ced-pspot__pricing-formula-body dl {
	margin: 0;
	display: grid;
	gap: 0.85rem;
}
.ced-pspot__pricing-formula-body dt {
	font-weight: 700;
	color: var(--pspot-ink);
	font-size: 0.82rem;
	letter-spacing: -0.005em;
}
.ced-pspot__pricing-formula-body dd {
	margin: 0.25rem 0 0;
	color: var(--pspot-ink-dim);
	font-size: 0.85rem;
	line-height: 1.55;
}
.ced-pspot__pricing-formula-body code {
	background: color-mix(in oklab, var(--pspot-accent) 10%, transparent);
	color: var(--pspot-accent);
	padding: 0.1rem 0.4rem;
	border-radius: 5px;
	font-size: 0.85em;
	font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.ced-pspot__pricing-formula-body strong {
	color: var(--pspot-ink);
	font-weight: 600;
}

/* On narrow screens, formula goes below the toggle full-width */
/* Pricing-formula-body responsive rule consolidated into the
   sm/md/lg breakpoints below. */

/* ── 10. CTA ────────────────────────────────────────────────── */
.ced-pspot__cta {
	margin-top: clamp(2rem, 4vw, 3rem);
}
.ced-pspot__cta-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 2rem;
	background: linear-gradient(135deg, color-mix(in oklab, var(--pspot-accent) 12%, transparent), color-mix(in oklab, var(--pspot-accent) 2%, transparent));
	border: 1px solid var(--pspot-line-hot);
	border-radius: 20px;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	position: relative;
	overflow: hidden;
}
.ced-pspot__cta-inner::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -10%;
	width: 60%;
	height: 200%;
	background: radial-gradient(50% 50% at 50% 50%, color-mix(in oklab, var(--pspot-accent) 18%, transparent), transparent 70%);
	pointer-events: none;
}
.ced-pspot__cta-text {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0.5rem;
}
.ced-pspot__cta-eyebrow {
	color: var(--pspot-accent) !important;
}
.ced-pspot__cta-title {
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 0;
}
.ced-pspot__cta-sub {
	color: var(--pspot-ink-dim);
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
	max-width: 600px;
}
.ced-pspot__cta-btn {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	background: var(--pspot-accent);
	color: #0E0E11;
	padding: 0.95rem 1.5rem;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid var(--pspot-accent);
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
	white-space: nowrap;
}
.ced-pspot__cta-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 24px color-mix(in oklab, var(--pspot-accent) 35%, transparent);
	background: #d985ec;
	color: #0E0E11;
}
.ced-pspot__cta-btn svg {
	transition: transform .25s ease;
}
.ced-pspot__cta-btn:hover svg {
	transform: translate(2px, -2px);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — aligned to the standard sm/md/lg/xl/2xl scale
   ───────────────────────────────────────────────────────────
   xl  (1280+)  Full 3-col layouts, comfortable spacing
   lg  (1024-1279) 3-col layouts, tighter spacing
   md  (768-1023)  2-col + caps drops to 2-col grid
   sm  (640-767)   1-col, caps 2-col, modal grid stacks
   <sm (<640)      Full mobile — everything stacks
   ═══════════════════════════════════════════════════════════ */

/* === Below lg (1024px) — tablets =========================== */
@media (max-width: 1023px) {
	/* Pricing tier cards stack on tablet — 3 cards × 4-bullet
	   content gets too cramped at 245px column width. */
	.ced-pspot__pricing-grid {
		grid-template-columns: 1fr;
		max-width: 540px;
		margin-inline: auto;
	}
	/* "Most picked" badge stops floating outside the card
	   when grid is 1-col — keep it tucked at the top edge. */
	.ced-pspot__pricing-card.is-featured {
		padding-top: 1.8rem;
	}
}

/* === Below md (768px) — small tablets / large phones ===== */
@media (max-width: 767px) {
	.ced-pspot__verdict,
	.ced-pspot__nogo-grid,
	.ced-pspot__engage-grid,
	.ced-pspot__cta-inner {
		grid-template-columns: 1fr;
	}
	.ced-pspot__caps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.ced-pspot__cta-btn {
		justify-self: flex-start;
	}
	.ced-pspot__cta-inner {
		gap: 1.2rem;
	}
	/* Toggle row stacks: toggle on top, formula link below. */
	.ced-pspot__pricing-toggle-row {
		flex-direction: column;
		align-items: flex-start;
	}
	/* Formula disclosure spans full width below md. */
	.ced-pspot__pricing-formula-body {
		width: 100%;
	}
}

/* === Below sm (640px) — phones ============================ */
@media (max-width: 639px) {
	/* Capabilities collapse to single column on phones. */
	.ced-pspot__caps-grid {
		grid-template-columns: 1fr;
	}
	.ced-pspot__caps-tabs {
		width: 100%;
		justify-content: flex-start;
	}
	/* Modal form fields stack 1-col, panel tightens padding. */
	.ced-pspot__modal-grid {
		grid-template-columns: 1fr;
	}
	.ced-pspot__modal-panel {
		padding: 1.5rem;
	}
	/* (Formula disclosure already 100% width from md rule above.) */
	/* OUR PICK badge shrinks slightly on mobile so it doesn't
	   visually dominate the narrow Flutter column. */
	.ced-pspot__th--highlight::before {
		font-size: 0.5rem;
		padding: 2px 6px;
		top: -8px;
	}
	/* When-NOT-to-use header stacks icon above title. */
	.ced-pspot__nogo-head {
		flex-direction: column;
		gap: 0.8rem;
	}
	.ced-pspot__arch-legend {
		flex-direction: column;
		gap: 0.5rem;
	}
	/* Pricing toggle hint text disappears on very small screens
	   to keep the toggle pill from wrapping awkwardly. */
	.ced-pspot__pricing-toggle-btn {
		padding: 0.55rem 0.85rem;
	}
	.ced-pspot__pricing-toggle-hint {
		display: none;
	}
	/* Engagement CTA buttons stretch full-width on phone. */
	.ced-pspot__engage-cta {
		width: 100%;
	}
	/* Fixed-cost card tightens padding on phone. */
	.ced-pspot__pricing-fixed-card {
		padding: 1.5rem 1.25rem;
	}
	.ced-pspot__pricing-fixed-cta {
		width: 100%;
		padding: 0.85rem 1rem;
		font-size: 0.88rem;
	}
}

/* ── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
	.ced-pspot__arch-svg circle[r="3"] {
		display: none;
	}
	.ced-pspot__arch-dot--link {
		animation: none;
	}
	.ced-pspot__nogo-card,
	.ced-pspot__cta-btn {
		transition: none;
	}
}
