/* ==========================================================================
   Price Table (.sentio-pt)
   ==========================================================================
   Extracted from frontend.css during the Batch 8 mechanical extraction
   (2026-04-18). Behavior-preserving.

   Pre-existing widget-settings-backlog entries: (1) color controls missing
   gradient options, (2) button link single-link limitation, (3) feature
   parity gap with sentioaddons.com pricing table. Preserved as-is per
   mechanical-extraction behavior-preservation rule.

   Class-prefix collision with page-title (Batch 8 #22 — already extracted;
   distinct CSS block at prior line range). Never collide on same DOM.
   ========================================================================== */

.sentio-pt {
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 4px;
	background: #fff;
	transition: transform .3s ease, box-shadow .3s ease;
}

/* --- Hover Lift (Differentiator #7) --- */

.sentio-pt--hover-lift-yes .sentio-pt:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

/* --- Header --- */

.sentio-pt__header {
	padding: 24px 24px 0;
}

.sentio-pt__heading {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
}

.sentio-pt__sub-heading {
	display: block;
	margin-top: 4px;
	font-size: 14px;
	color: #999;
}

/* --- Pricing Toggle (Differentiator #4) --- */

.sentio-pt__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 24px 0;
}

.sentio-pt__toggle-label {
	font-size: 13px;
	color: #999;
	cursor: pointer;
	transition: color .2s;
}

.sentio-pt__toggle-label--active {
	color: #333;
	font-weight: 600;
}

.sentio-pt__toggle-track {
	position: relative;
	width: 44px;
	height: 24px;
	border: none;
	border-radius: 12px;
	background: #E0E0E0;
	cursor: pointer;
	transition: background .2s;
	padding: 0;
}

.sentio-pt__toggle-track--active {
	background: #6EC1E4;
}

.sentio-pt__toggle-thumb {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.2);
	transition: left .2s ease;
}

.sentio-pt__toggle-track--active .sentio-pt__toggle-thumb {
	left: 23px;
}

/* --- Pricing area --- */

.sentio-pt__pricing {
	position: relative;
	padding: 16px 24px;
}

.sentio-pt__original-price {
	display: block;
	font-size: 16px;
	color: #999;
	text-decoration: line-through;
	margin-bottom: 4px;
}

.sentio-pt__price-wrap {
	display: inline-flex;
	align-items: flex-start;
	line-height: 1;
}

.sentio-pt__currency {
	font-size: 22px;
	font-weight: 600;
	margin-top: 8px;
}

.sentio-pt__integer {
	font-size: 52px;
	font-weight: 700;
	line-height: 1;
}

.sentio-pt__decimal {
	font-size: 22px;
	font-weight: 600;
	margin-top: 8px;
}

.sentio-pt__period {
	display: block;
	font-size: 14px;
	color: #999;
	margin-top: 4px;
}

/* Sale Badge (Differentiator #3) */

.sentio-pt__sale-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	background: #E74C3C;
	color: #fff;
	border-radius: 3px;
}

/* --- Features --- */

.sentio-pt__features {
	list-style: none;
	margin: 0;
	padding: 0 24px;
}

.sentio-pt__features--divider .sentio-pt__feature + .sentio-pt__feature {
	border-top: 1px solid #eee;
}

.sentio-pt__feature {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 0;
	font-size: 14px;
}

.sentio-pt__feature--excluded .sentio-pt__feature-text {
	text-decoration: line-through;
	color: #ccc;
}

.sentio-pt__feature--excluded .sentio-pt__feature-icon {
	color: #ccc;
}

.sentio-pt__feature--included .sentio-pt__feature-icon {
	color: #23A455;
}

.sentio-pt__feature-icon {
	display: inline-flex;
	font-size: 14px;
	flex-shrink: 0;
}

.sentio-pt__feature-icon svg {
	width: 1em;
	height: 1em;
}

/* Feature Group Heading (Differentiator #6) */

.sentio-pt__feature-group {
	padding: 12px 0 6px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: #666;
	border-top: none !important;
}

/* Per-Feature Tooltip (Differentiator #1) */

.sentio-pt__tooltip {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: help;
	color: #999;
}

.sentio-pt__tooltip-icon {
	width: 14px;
	height: 14px;
}

.sentio-pt__tooltip-text {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	padding: 6px 10px;
	font-size: 12px;
	line-height: 1.3;
	background: #333;
	color: #fff;
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s, visibility .2s;
	z-index: 10;
	pointer-events: none;
}

.sentio-pt__tooltip-text::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: #333;
}

.sentio-pt__tooltip:hover .sentio-pt__tooltip-text {
	opacity: 1;
	visibility: visible;
}

/* --- Footer --- */

.sentio-pt__footer {
	padding: 16px 24px 24px;
}

.sentio-pt__button {
	display: inline-block;
	width: 100%;
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	background: #6EC1E4;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background .2s, color .2s, box-shadow .2s, transform .18s ease, border-color .2s, opacity .2s;
	box-sizing: border-box;
}

.sentio-pt__button:hover {
	opacity: .9;
}

.sentio-pt__additional-info {
	margin: 12px 0 0;
	font-size: 12px;
	color: #999;
}

/* Guarantee (Differentiator #5) */

.sentio-pt__guarantee {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 12px;
	font-size: 12px;
	color: #999;
}

.sentio-pt__guarantee-icon {
	display: inline-flex;
	font-size: 14px;
}

.sentio-pt__guarantee-icon svg {
	width: 1em;
	height: 1em;
}

/* --- Ribbon --- */

.sentio-pt__ribbon {
	position: absolute;
	top: 0;
	z-index: 5;
	overflow: hidden;
	width: 150px;
	height: 150px;
	pointer-events: none;
}

.sentio-pt__ribbon--left {
	left: 0;
}

.sentio-pt__ribbon--right {
	right: 0;
}

.sentio-pt__ribbon-inner {
	display: block;
	width: 225px;
	padding: 8px 0;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .5px;
	background: #6EC1E4;
	color: #fff;
	position: absolute;
	top: 26px;
}

.sentio-pt__ribbon--right .sentio-pt__ribbon-inner {
	right: -55px;
	transform: rotate(45deg);
}

.sentio-pt__ribbon--left .sentio-pt__ribbon-inner {
	left: -55px;
	transform: rotate(-45deg);
}

/* ==========================================================================
   Milestone A additions — single-card polish (2026-04-21)
   --------------------------------------------------------------------------
   Session: price-table-expansion (A2 workstream).
   Back-compat: all defaults preserve current rendering for existing widgets
   (cta_style=solid, feature_icon_style=plain, sites_text empty, etc.).
   Reference: _audits/price-table-gap-analysis.md §6 Milestone A.
   ========================================================================== */

/* --- Widget-level CSS custom properties. Overridable by Elementor controls. --- */
.sentio-pt {
	--sentio-pt-focus-ring: #6C63FF;
}

/* --- Sites Badge (gap #26) --- */
.sentio-pt__sites-wrap {
	display: flex;
	justify-content: center;
	padding: 0 24px 12px;
}

.sentio-pt__sites {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f7f6fa;
	border: 1px solid #e8e6ef;
	border-radius: 6px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 700;
	color: #5a566b;
	line-height: 1.2;
}

/* --- Top Divider (gap #27) --- */
.sentio-pt__top-divider {
	height: 1px;
	background: #f0eef4;
	margin: 0 24px 16px;
}

/* --- Feature Icon Pill (gap #31) --- */
.sentio-pt__feature-icon--pill-square {
	width: 20px;
	height: 20px;
	background: rgba(235, 52, 128, 0.1);
	border-radius: 6px;
	align-items: center;
	justify-content: center;
	color: #eb3480;
}

.sentio-pt__feature-icon--pill-square svg {
	width: 0.75em;
	height: 0.75em;
}

/* --- CTA Style: Solid (default — keeps current behavior) (gap #33/34) --- */
/* .sentio-pt__button--solid uses the existing .sentio-pt__button base rules. */

/* --- CTA Style: Ghost (gap #34) --- */
.sentio-pt__button--ghost {
	background: transparent;
	border: 1.5px solid #e8e6ef;
	color: #1e1b2e;
}

.sentio-pt__button--ghost:hover {
	background: transparent;
	border-color: #eb3480;
	color: #eb3480;
}

/* --- CTA Style: Gradient (gap #33) --- */
.sentio-pt__button--gradient {
	--sentio-pt-cta-gradient-angle: 135deg;
	--sentio-pt-cta-gradient-start: #eb3480;
	--sentio-pt-cta-gradient-end: #9333ea;

	background: linear-gradient(
		var(--sentio-pt-cta-gradient-angle),
		var(--sentio-pt-cta-gradient-start) 0%,
		var(--sentio-pt-cta-gradient-end) 100%
	);
	color: #ffffff;
	border: none;
}

.sentio-pt__button--gradient:hover {
	opacity: 0.94;
}

/* --- CTA Hover Lift (gap #36). Gated by widget-level prefix_class. --- */
.sentio-pt--cta-hover-lift-yes .sentio-pt__button:hover {
	transform: translateY(-3px);
}

/* --- Focus-visible rings (gap #40). Per authoring guide §8.3. --- */
.sentio-pt__button:focus-visible,
.sentio-pt__toggle-track:focus-visible {
	outline: 3px solid var(--sentio-pt-focus-ring, #6C63FF);
	outline-offset: 2px;
}

.sentio-pt__toggle-label:focus-visible {
	outline: 2px solid var(--sentio-pt-focus-ring, #6C63FF);
	outline-offset: 3px;
	border-radius: 3px;
}

/* --- Prefers-reduced-motion (gap #39). Per authoring guide §8.6. --- */
@media (prefers-reduced-motion: reduce) {
	.sentio-pt,
	.sentio-pt *,
	.sentio-pt *::before,
	.sentio-pt *::after {
		transition-duration: 0.001s !important;
		animation-duration: 0.001s !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
	}
}

/* ==========================================================================
   Milestone B — Section mode scaffold (2026-04-21)
   --------------------------------------------------------------------------
   Wrapper class: .sentio-pt--section on the root .sentio-pt. When present,
   single-card base styles (text-align, overflow, bg, radius) are neutralized
   and the section layout is applied.

   Milestone B scope: markup + static styling + toggle active-class swap
   + pill positioning. No price/link swap yet (Milestone C). No orbs / glows /
   grid overlay / animated gradient emphasis (Milestone D).

   Keyframe prefix: sentio-pt-* (no collision with reference's sentio-* keyframes
   per _audits/price-table-gap-analysis.md §2.4).

   Design tokens — override via CSS custom properties or Elementor Style → Section controls.
   ========================================================================== */

/* --- Section-mode root reset (neutralizes single-card base rules). --- */
.sentio-pt.sentio-pt--section {
	overflow: visible;
	background: transparent;
	border-radius: 0;
	text-align: initial;
	transition: none;
	/* Section-level design tokens (overridable) */
	--sentio-pt-section-accent: #eb3480;
	--sentio-pt-section-accent-2: #9333ea;
	--sentio-pt-popular-ring: #eb3480;
}

/* --- Section keyframes --- */
@keyframes sentio-pt-card-in {
	from { opacity: 0; transform: translateY(30px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Price swap (Milestone C, 2026-04-21) */
@keyframes sentio-pt-price-out {
	from { opacity: 1; transform: translateY(0); }
	to   { opacity: 0; transform: translateY(-10px); }
}

@keyframes sentio-pt-price-in {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* --- HERO --- */
.sentio-pt--section .sentio-pt__hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(
		165deg,
		rgb(11, 14, 24)   0%,
		rgb(19, 22, 39)   40%,
		rgb(15, 27, 61)   70%,
		rgb(11, 14, 24)   100%
	);
	padding: 50px 24px 100px;
	text-align: center;
	border-radius: 20px;
}

.sentio-pt--section .sentio-pt__hero-content {
	position: relative;
	z-index: 2;
	max-width: 640px;
	margin: 0 auto;
}

/* --- Eyebrow (Milestone B basic; polish in D) --- */
.sentio-pt--section .sentio-pt__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(235, 52, 128, 0.12);
	border: 1px solid rgba(235, 52, 128, 0.28);
	border-radius: 100px;
	padding: 6px 16px;
	font-size: 12px;
	font-weight: 700;
	color: #f472b6;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 28px;
}

.sentio-pt--section .sentio-pt__eyebrow-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sentio-pt-section-accent, #eb3480);
	animation: sentio-pt-glow-pulse 2s ease-in-out infinite;
	flex-shrink: 0;
}

/* --- Hero heading --- */
.sentio-pt--section .sentio-pt__hero-heading {
	font-weight: 800;
	font-size: clamp(32px, 5.5vw, 64px);
	line-height: 1.08;
	letter-spacing: -1px;
	color: #ffffff;
	margin: 0 0 20px;
}

.sentio-pt--section .sentio-pt__hero-heading-em {
	font-style: normal;
	background: linear-gradient(135deg, var(--sentio-pt-section-accent, #eb3480), var(--sentio-pt-section-accent-2, #9333ea));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.sentio-pt--section .sentio-pt__hero-sub {
	font-size: clamp(15px, 2vw, 18px);
	color: rgba(255, 255, 255, 0.52);
	max-width: 520px;
	margin: 0 auto 44px;
	line-height: 1.6;
}

/* --- Billing toggle --- */
.sentio-pt--section .sentio-pt__toggle-wrap {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.sentio-pt--section .sentio-pt__section-toggle {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 100px;
	padding: 4px;
	gap: 2px;
	position: relative;
}

.sentio-pt--section .sentio-pt__section-toggle-btn {
	position: relative;
	z-index: 2;
	padding: 10px 26px;
	border-radius: 100px;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.46);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: color 0.25s;
	white-space: nowrap;
	font-family: inherit;
}

.sentio-pt--section .sentio-pt__section-toggle-btn.is-active {
	color: #ffffff;
}

.sentio-pt--section .sentio-pt__section-toggle-pill {
	position: absolute;
	top: 4px;
	left: 4px;
	height: calc(100% - 8px);
	border-radius: 100px;
	background: linear-gradient(135deg, var(--sentio-pt-section-accent, #eb3480), var(--sentio-pt-section-accent-2, #9333ea));
	box-shadow: 0 2px 14px rgba(235, 52, 128, 0.35);
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), width 0.3s ease;
	pointer-events: none;
	/* width + transform set by JS after layout settles */
	width: 0;
}

.sentio-pt--section .sentio-pt__section-lifetime-note {
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.42);
	letter-spacing: 0.02em;
	margin: 0;
	height: 18px;
	transition: opacity 0.25s;
	opacity: 0;
}

.sentio-pt--section .sentio-pt__section-lifetime-note.is-visible {
	opacity: 1;
}

.sentio-pt--section .sentio-pt__section-lifetime-note strong {
	color: #f472b6;
	font-weight: 700;
}

/* --- CARDS AREA --- */
.sentio-pt--section .sentio-pt__cards-section {
	background: #f7f6fa;
	padding: 0 24px 80px;
}

.sentio-pt--section .sentio-pt__grid {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1040px;
	transform: translateY(-64px);
}

/* --- Card --- */
.sentio-pt--section .sentio-pt__card {
	background: #ffffff;
	border-radius: 20px;
	border: 1.5px solid #e8e6ef;
	padding: 36px 32px 32px;
	display: flex;
	flex-direction: column;
	gap: 0;
	box-shadow: 0 4px 20px rgba(15, 10, 30, 0.05);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
	position: relative;
	color: #3d3953;
	animation: sentio-pt-card-in 0.65s ease-out var(--sentio-pt-card-delay, 0.35s) both;
}

.sentio-pt--section .sentio-pt__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(15, 10, 30, 0.10);
}

.sentio-pt--section .sentio-pt__card--popular {
	border-color: transparent;
	box-shadow:
		0 0 0 2px var(--sentio-pt-popular-ring, #eb3480),
		0 8px 40px rgba(235, 52, 128, 0.18),
		0 4px 20px rgba(15, 10, 30, 0.06);
	transform: translateY(-8px);
}

.sentio-pt--section .sentio-pt__card--popular:hover {
	transform: translateY(-14px);
	box-shadow:
		0 0 0 2px var(--sentio-pt-popular-ring, #eb3480),
		0 20px 56px rgba(235, 52, 128, 0.24),
		0 8px 32px rgba(15, 10, 30, 0.10);
}

/* Popular badge (top-center pill) */
.sentio-pt--section .sentio-pt__popular-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--sentio-pt-section-accent, #eb3480), var(--sentio-pt-section-accent-2, #9333ea));
	color: #fff;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 16px;
	border-radius: 100px;
	white-space: nowrap;
	box-shadow: 0 4px 16px rgba(235, 52, 128, 0.4);
}

.sentio-pt--section .sentio-pt__card-plan-name {
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8e8a9d;
	margin-bottom: 20px;
}

.sentio-pt--section .sentio-pt__card--popular .sentio-pt__card-plan-name {
	color: var(--sentio-pt-section-accent, #eb3480);
}

/* Price block */
.sentio-pt--section .sentio-pt__card-price-block {
	margin-bottom: 8px;
	min-height: 72px;
	display: flex;
	align-items: flex-end;
	gap: 4px;
}

.sentio-pt--section .sentio-pt__card-currency {
	font-weight: 700;
	font-size: 22px;
	color: #1e1b2e;
	line-height: 1;
	padding-bottom: 10px;
}

.sentio-pt--section .sentio-pt__card-amount {
	font-weight: 800;
	font-size: 58px;
	line-height: 1;
	letter-spacing: -2px;
	color: #1e1b2e;
	transition: opacity 0.2s, transform 0.2s;
}

/* Milestone C — animated price swap. Classes added/removed by JS. */
.sentio-pt--section .sentio-pt__card-amount.is-animating {
	animation: sentio-pt-price-out 0.18s ease forwards;
}

.sentio-pt--section .sentio-pt__card-amount.is-entering {
	animation: sentio-pt-price-in 0.22s ease forwards;
}

.sentio-pt--section .sentio-pt__card-period {
	font-size: 14px;
	font-weight: 600;
	color: #8e8a9d;
	padding-bottom: 12px;
	transition: opacity 0.2s;
}

/* Sites badge */
.sentio-pt--section .sentio-pt__card-sites {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f7f6fa;
	border: 1px solid #e8e6ef;
	border-radius: 6px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 700;
	color: #5a566b;
	margin-bottom: 28px;
	align-self: flex-start;
}

.sentio-pt--section .sentio-pt__card--popular .sentio-pt__card-sites {
	background: rgba(235, 52, 128, 0.06);
	border-color: rgba(235, 52, 128, 0.2);
	color: var(--sentio-pt-section-accent, #eb3480);
}

/* Divider */
.sentio-pt--section .sentio-pt__card-divider {
	height: 1px;
	background: #f0eef4;
	margin-bottom: 24px;
}

/* Features */
.sentio-pt--section .sentio-pt__card-features {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 13px;
	flex: 1;
}

.sentio-pt--section .sentio-pt__card-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #3d3953;
	font-weight: 500;
	margin: 0;
}

.sentio-pt--section .sentio-pt__card-check {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 6px;
	background: rgba(235, 52, 128, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--sentio-pt-section-accent, #eb3480);
	font-size: 11px;
	font-weight: 800;
}

.sentio-pt--section .sentio-pt__card--popular .sentio-pt__card-check {
	background: rgba(235, 52, 128, 0.14);
}

/* CTA */
.sentio-pt--section .sentio-pt__card-cta {
	display: block;
	text-align: center;
	padding: 14px 24px;
	border-radius: 12px;
	font-size: 14.5px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s, border-color 0.2s, color 0.2s;
	white-space: nowrap;
}

.sentio-pt--section .sentio-pt__card-cta--ghost {
	background: transparent;
	border: 1.5px solid #e8e6ef;
	color: #1e1b2e;
}

.sentio-pt--section .sentio-pt__card-cta--ghost:hover {
	border-color: var(--sentio-pt-section-accent, #eb3480);
	color: var(--sentio-pt-section-accent, #eb3480);
	transform: translateY(-2px);
}

.sentio-pt--section .sentio-pt__card-cta--solid {
	background: var(--sentio-pt-section-accent, #eb3480);
	border: none;
	color: #ffffff;
	box-shadow: 0 4px 20px rgba(235, 52, 128, 0.3);
}

.sentio-pt--section .sentio-pt__card-cta--solid:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(235, 52, 128, 0.45);
	opacity: 0.94;
}

.sentio-pt--section .sentio-pt__card-cta--gradient {
	background: linear-gradient(135deg, var(--sentio-pt-section-accent, #eb3480) 0%, var(--sentio-pt-section-accent-2, #9333ea) 100%);
	border: none;
	color: #ffffff;
	box-shadow: 0 4px 20px rgba(235, 52, 128, 0.3);
}

.sentio-pt--section .sentio-pt__card-cta--gradient:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(235, 52, 128, 0.45);
	opacity: 0.94;
}

/* Focus-visible on section-mode interactive elements */
.sentio-pt--section .sentio-pt__section-toggle-btn:focus-visible,
.sentio-pt--section .sentio-pt__card-cta:focus-visible {
	outline: 3px solid var(--sentio-pt-focus-ring, #6C63FF);
	outline-offset: 3px;
	border-radius: 12px;
}

/* Visually-hidden live-region announcer (Milestone C). Per authoring guide §8.4. */
.sentio-pt--section .sentio-pt__sr-announce {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* --- Guarantee Bar --- */
.sentio-pt--section .sentio-pt__guarantee-bar {
	text-align: center;
	transform: translateY(-40px);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.sentio-pt--section .sentio-pt__guarantee-bar-item {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 600;
	color: #8e8a9d;
}

.sentio-pt--section .sentio-pt__guarantee-bar-icon {
	font-size: 15px;
	filter: grayscale(0.3);
}

.sentio-pt--section .sentio-pt__guarantee-bar-sep {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #d1cede;
}

/* --- Responsive (reference breakpoints: 900px / 640px) --- */
@media (max-width: 900px) {
	.sentio-pt--section .sentio-pt__grid {
		grid-template-columns: 1fr 1fr;
	}
	.sentio-pt--section .sentio-pt__card--popular {
		grid-column: span 2;
		max-width: 420px;
		justify-self: center;
		width: 100%;
	}
}

@media (max-width: 640px) {
	.sentio-pt--section .sentio-pt__hero {
		padding: 60px 20px 100px;
	}
	.sentio-pt--section .sentio-pt__grid {
		grid-template-columns: 1fr;
		transform: translateY(-44px);
	}
	.sentio-pt--section .sentio-pt__card--popular {
		grid-column: span 1;
		max-width: 100%;
		transform: translateY(0);
	}
	.sentio-pt--section .sentio-pt__card--popular:hover {
		transform: translateY(-6px);
	}
	.sentio-pt--section .sentio-pt__card {
		padding: 28px 24px 24px;
	}
	.sentio-pt--section .sentio-pt__section-toggle-btn {
		padding: 9px 18px;
		font-size: 13px;
	}
	.sentio-pt--section .sentio-pt__guarantee-bar {
		gap: 12px;
		transform: translateY(-20px);
	}
	.sentio-pt--section .sentio-pt__orb--hide-mobile {
		display: none;
	}
}

/* ==========================================================================
   Milestone D — Hero visual polish (2026-04-21)
   --------------------------------------------------------------------------
   Adds: grid overlay, 3 ambient glow slots, 8-orb preset (orbs off by default),
   user-configurable gradient emphasis on hero heading, hero entrance animation,
   eyebrow/guarantee-bar styling (via Style → Section controls).
   ========================================================================== */

/* --- Hero entrance animation --- */
@keyframes sentio-pt-hero-in {
	from { opacity: 0; transform: translateY(22px); }
	to   { opacity: 1; transform: translateY(0); }
}

.sentio-pt--section .sentio-pt__hero-content {
	animation: sentio-pt-hero-in 0.8s ease-out both;
}

/* --- Glow pulse keyframe (used by both ambient glows and eyebrow dot) --- */
@keyframes sentio-pt-glow-pulse {
	0%, 100% { opacity: 0.55; }
	50%      { opacity: 0.95; }
}

/* --- Grid overlay --- */
.sentio-pt--section .sentio-pt__hero-grid-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(var(--sentio-pt-grid-color, rgba(255, 255, 255, 0.032)) 1px, transparent 1px),
		linear-gradient(90deg, var(--sentio-pt-grid-color, rgba(255, 255, 255, 0.032)) 1px, transparent 1px);
	background-size: var(--sentio-pt-grid-size, 48px) var(--sentio-pt-grid-size, 48px);
	z-index: 0;
}

/* --- Ambient glows --- */
.sentio-pt--section .sentio-pt__glow {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(80px);
	animation: sentio-pt-glow-pulse 5s ease-in-out infinite;
	z-index: 1;
}

.sentio-pt--section .sentio-pt__glow--pink {
	width: 640px;
	height: 440px;
	top: -120px;
	right: -60px;
	background: radial-gradient(circle, var(--sentio-pt-glow-color, rgba(235, 52, 128, 0.16)) 0%, transparent 70%);
}

.sentio-pt--section .sentio-pt__glow--blue {
	width: 480px;
	height: 360px;
	bottom: -80px;
	left: -60px;
	background: radial-gradient(circle, var(--sentio-pt-glow-color, rgba(99, 102, 241, 0.12)) 0%, transparent 70%);
	animation-duration: 7s;
	animation-delay: 1.5s;
}

.sentio-pt--section .sentio-pt__glow--purple {
	width: 360px;
	height: 300px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle, var(--sentio-pt-glow-color, rgba(147, 51, 234, 0.09)) 0%, transparent 70%);
	animation-duration: 6s;
	animation-delay: 0.8s;
}

/* --- Floating orbs --- */
.sentio-pt--section .sentio-pt__orbs {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.sentio-pt--section .sentio-pt__orb {
	position: absolute;
	/* left/top set via inline style; size via --sentio-pt-orb-size CSS var */
	width: var(--sentio-pt-orb-size, 56px);
	height: var(--sentio-pt-orb-size, 56px);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.09);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
	animation:
		sentio-pt-orb-float var(--sentio-pt-orb-dur, 6.5s) ease-in-out infinite,
		sentio-pt-orb-in    1s ease-out var(--sentio-pt-orb-delay, 0s) both;
}

.sentio-pt--section .sentio-pt__orb-icon {
	line-height: 1;
	/* Scales proportionally to orb size (0.38× per reference spec). */
	font-size: calc(var(--sentio-pt-orb-size, 56px) * 0.38);
	filter: drop-shadow(0 0 7px rgba(99, 179, 255, 0.4));
}

.sentio-pt--section .sentio-pt__orb-label {
	font-size: calc(var(--sentio-pt-orb-size, 56px) * 0.14);
	font-weight: 700;
	color: rgba(255, 255, 255, 0.38);
	letter-spacing: 0.55px;
	text-transform: uppercase;
}

@keyframes sentio-pt-orb-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-11px); }
}

@keyframes sentio-pt-orb-in {
	from { opacity: 0; transform: translateY(18px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* --- Hero heading emphasis — user-configurable gradient
 *     (overrides the Milestone B baked-in gradient)
 * --- */
.sentio-pt--section .sentio-pt__hero-heading-em {
	--sentio-pt-em-start: #eb3480;
	--sentio-pt-em-end: #9333ea;
	--sentio-pt-em-angle: 135deg;
	background: linear-gradient(
		var(--sentio-pt-em-angle),
		var(--sentio-pt-em-start),
		var(--sentio-pt-em-end)
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
