/**
 * Laty Pricing — Ultra-aggressive sales pricing
 *
 * Design:
 *   - Background: #050507 (page provides)
 *   - Glass: rgba(12,12,14,0.45) + blur(20px) saturate(1.3) + border rgba(255,255,255,0.06)
 *   - Hero card: radial glow + elevated glass + shimmer sweep
 *   - Fonts: Manrope 800/700 (headings/prices), Helvetica (body/labels)
 *   - border-radius: 0 everywhere
 *   - Prefix: stg-laty__
 */

/* ================================================
   SECTION
   ================================================ */

.stg-laty {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.stg-laty *,
.stg-laty *::before,
.stg-laty *::after {
	box-sizing: border-box;
}

/* ================================================
   ATMOSPHERE — mesh + grain + glow
   ================================================ */

.stg-laty__atmosphere {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.stg-laty__mesh {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 55% 35% at 15% 10%, rgba(255, 255, 255, 0.012) 0%, transparent 70%),
		radial-gradient(ellipse 45% 50% at 85% 60%, rgba(255, 255, 255, 0.008) 0%, transparent 70%),
		radial-gradient(ellipse 60% 25% at 50% 40%, rgba(255, 255, 255, 0.006) 0%, transparent 60%);
	opacity: 0;
	animation: stg-laty-mesh 2s ease-out 0.5s forwards;
}

@keyframes stg-laty-mesh {
	to { opacity: 1; }
}

.stg-laty__grain {
	position: absolute;
	inset: 0;
	opacity: 0.025;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-repeat: repeat;
	background-size: 200px 200px;
}

.stg-laty__glow {
	position: absolute;
	pointer-events: none;
}

.stg-laty__glow--top {
	top: -5%;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 500px;
	background: radial-gradient(ellipse, rgba(255, 255, 255, 0.018) 0%, transparent 65%);
}

.stg-laty__glow--bottom {
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 400px;
	background: radial-gradient(ellipse, rgba(255, 255, 255, 0.012) 0%, transparent 65%);
}

/* ================================================
   INNER CONTAINER
   ================================================ */

.stg-laty__inner {
	position: relative;
	z-index: 2;
	max-width: 1260px;
	width: 100%;
	margin: 0 auto;
	padding: 80px 24px 100px;
	display: flex;
	flex-direction: column;
	gap: 72px;
}

/* ================================================
   SCROLL REVEAL
   ================================================ */

.stg-laty__reveal-child {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
	            transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stg-laty__reveal--visible > .stg-laty__reveal-child,
.stg-laty__reveal-child.stg-laty__reveal--visible {
	opacity: 1;
	transform: translateY(0);
}

/* ================================================
   HEADER
   ================================================ */

.stg-laty__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 20px;
}

.stg-laty__pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	background: rgba(12, 12, 14, 0.4);
	backdrop-filter: blur(14px) saturate(1.2);
	-webkit-backdrop-filter: blur(14px) saturate(1.2);
	border: 1px solid rgba(255, 255, 255, 0.07);
	padding: 9px 20px;
}

.stg-laty__pill-dot {
	width: 5px;
	height: 5px;
	background: rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
	animation: stg-laty-pulse 2.8s ease-in-out infinite;
}

@keyframes stg-laty-pulse {
	0%, 100% { opacity: 0.35; box-shadow: 0 0 4px rgba(255, 255, 255, 0.1); }
	50%      { opacity: 1;   box-shadow: 0 0 14px rgba(255, 255, 255, 0.3); }
}

.stg-laty__title {
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.05;
	letter-spacing: -0.035em;
	color: #ffffff;
	margin: 0;
	text-transform: uppercase;
}

.stg-laty__title em {
	font-style: italic;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.45);
}

.stg-laty__subtitle {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
	max-width: 580px;
}

/* ================================================
   ANCHOR COMPARISON (header hook)
   ================================================ */

.stg-laty__anchor {
	width: 100%;
	max-width: 800px;
	margin-top: 8px;
}

.stg-laty__anchor-hook {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	text-align: center;
	margin: 0 0 16px;
}

.stg-laty__anchor-cards {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
}

.stg-laty__anchor-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 18px 14px;
	text-align: center;
}

.stg-laty__anchor-card--competitor {
	background: rgba(255, 50, 50, 0.03);
	border: 1px solid rgba(255, 80, 80, 0.08);
}

.stg-laty__anchor-card--stg {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.stg-laty__anchor-name {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.stg-laty__anchor-price {
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: rgba(255, 100, 100, 0.7);
	text-decoration: line-through;
	text-decoration-color: rgba(255, 100, 100, 0.3);
}

.stg-laty__anchor-total {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.3);
}

.stg-laty__anchor-total strong {
	color: rgba(255, 100, 100, 0.6);
	font-weight: 700;
}

.stg-laty__anchor-extra {
	font-size: 10px;
	color: rgba(255, 100, 100, 0.4);
	letter-spacing: 0.02em;
}

.stg-laty__anchor-stg-price {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #ffffff;
	letter-spacing: -0.01em;
}

.stg-laty__anchor-stg-zero {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.35);
	font-weight: 600;
}

/* ================================================
   PRICING GRID
   ================================================ */

.stg-laty__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	align-items: start;
}

/* ================================================
   CARD — Glass
   ================================================ */

.stg-laty__card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: rgba(12, 12, 14, 0.45);
	box-shadow: 0 8px 36px rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(20px) saturate(1.3);
	-webkit-backdrop-filter: blur(20px) saturate(1.3);
	border: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
	transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.stg-laty__card:hover {
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow: 0 20px 56px rgba(0, 0, 0, 0.25);
}

/* ── Cursor Glow Overlay ── */

.stg-laty__cursor-glow {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
	mix-blend-mode: screen;
}

.stg-laty__card:hover .stg-laty__cursor-glow {
	opacity: 1;
}

/* ── 3D Tilt ── */

[data-stg-tilt] {
	transform-style: preserve-3d;
	transition: transform 0.45s cubic-bezier(0.03, 0.98, 0.52, 0.99),
	            border-color 0.35s ease,
	            box-shadow 0.35s ease;
	will-change: transform;
}

.stg-laty__card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 36px 28px;
	position: relative;
	z-index: 2;
}

/* ── Hero (Pro) card ── */

.stg-laty__card--hero {
	background:
		radial-gradient(ellipse 90% 40% at 50% 0%, rgba(255, 255, 255, 0.035) 0%, transparent 55%),
		rgba(12, 12, 14, 0.55);
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow:
		0 8px 36px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
	z-index: 2;
}

.stg-laty__card--hero:hover {
	border-color: rgba(255, 255, 255, 0.24);
	box-shadow:
		0 24px 64px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Glow behind hero card */
.stg-laty__card-glow {
	position: absolute;
	top: -40%;
	left: -20%;
	right: -20%;
	height: 80%;
	background: radial-gradient(ellipse, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
	z-index: 0;
	pointer-events: none;
}

/* Shimmer on hero */
.stg-laty__card--hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.015) 50%, transparent 100%);
	animation: stg-laty-shimmer 12s ease-in-out 2s infinite;
	pointer-events: none;
	z-index: 1;
}

@keyframes stg-laty-shimmer {
	0%, 100% { left: -50%; }
	50%      { left: 100%; }
}

/* ── Premium (Enterprise) card ── */

.stg-laty__card--premium {
	border-color: rgba(255, 255, 255, 0.08);
}

.stg-laty__card--premium:hover {
	border-color: rgba(255, 255, 255, 0.18);
}

/* ================================================
   BADGE
   ================================================ */

.stg-laty__badge {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	padding: 6px 20px;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-top: none;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
	white-space: nowrap;
}

.stg-laty__card--hero .stg-laty__badge {
	background: #ffffff;
	color: #0a0a0c;
	border-color: #ffffff;
	border-top: none;
}

/* ================================================
   CARD HEAD — name + hook
   ================================================ */

.stg-laty__card-head {
	margin-bottom: 24px;
}

.stg-laty__card--hero .stg-laty__card-head {
	margin-top: 10px;
}

.stg-laty__plan-name {
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: 26px;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: #ffffff;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.stg-laty__plan-hook {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
}

.stg-laty__plan-hook strong {
	color: rgba(255, 255, 255, 0.72);
	font-weight: 600;
}

/* ================================================
   PRICE BLOCK
   ================================================ */

.stg-laty__price-block {
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stg-laty__price-strike {
	display: block;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 11px;
	color: rgba(255, 100, 100, 0.45);
	text-decoration: line-through;
	text-decoration-color: rgba(255, 100, 100, 0.2);
	margin-bottom: 4px;
	letter-spacing: 0.01em;
}

.stg-laty__price-row {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 8px;
}

.stg-laty__price {
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: 38px;
	line-height: 1;
	letter-spacing: -0.03em;
	color: #ffffff;
}

.stg-laty__card--hero .stg-laty__price {
	font-size: 44px;
}

.stg-laty__price-tags {
	display: flex;
	align-items: center;
	gap: 10px;
}

.stg-laty__price-once {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	padding: 3px 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.stg-laty__price-separator {
	width: 1px;
	height: 12px;
	background: rgba(255, 255, 255, 0.08);
}

.stg-laty__price-zero {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.3);
}

/* Credit cards + installments */
.stg-laty__price-cards {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
}

.stg-laty__price-cards-icons {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}

.stg-laty__price-cards-icons svg {
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.stg-laty__card:hover .stg-laty__price-cards-icons svg {
	opacity: 1;
}

.stg-laty__price-cards-text {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 500;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.3);
	letter-spacing: 0.02em;
}

/* ================================================
   CTA
   ================================================ */

.stg-laty__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 15px 24px;
	margin-bottom: 20px;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
}

.stg-laty__cta--ghost {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.7);
}

.stg-laty__cta--ghost:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.28);
	color: #ffffff;
}

.stg-laty__cta--solid {
	background: #ffffff;
	border: 1px solid #ffffff;
	color: #0a0a0c;
	position: relative;
	overflow: hidden;
}

.stg-laty__cta--solid::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	animation: stg-laty-btn-shimmer 4s ease-in-out infinite;
}

@keyframes stg-laty-btn-shimmer {
	0%   { left: -100%; }
	50%  { left: 100%; }
	100% { left: 100%; }
}

.stg-laty__cta--solid:hover {
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 44px rgba(255, 255, 255, 0.06);
}

.stg-laty__cta span {
	transition: transform 0.3s ease;
}

.stg-laty__cta:hover span {
	transform: translateX(3px);
}

/* ================================================
   SAVINGS CALLOUT
   ================================================ */

.stg-laty__savings {
	padding: 10px 14px;
	margin-bottom: 24px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	text-align: center;
}

.stg-laty__savings-text {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 11.5px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.35);
}

.stg-laty__savings-text strong {
	color: rgba(255, 255, 255, 0.7);
	font-weight: 700;
}

.stg-laty__card--hero .stg-laty__savings {
	background: rgba(255, 255, 255, 0.035);
	border-color: rgba(255, 255, 255, 0.07);
}

/* ================================================
   FEATURES
   ================================================ */

.stg-laty__features {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.stg-laty__feat-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.stg-laty__feat-label {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.22);
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stg-laty__feat-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.stg-laty__feat {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	transition: transform 0.2s ease;
}

.stg-laty__card:hover .stg-laty__feat {
	transform: translateX(2px);
}

.stg-laty__feat-check {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.2);
	transition: color 0.3s ease;
}

.stg-laty__card:hover .stg-laty__feat-check {
	color: rgba(255, 255, 255, 0.4);
}

.stg-laty__card--hero .stg-laty__feat-check {
	color: rgba(255, 255, 255, 0.35);
}

.stg-laty__card--hero:hover .stg-laty__feat-check {
	color: rgba(255, 255, 255, 0.55);
}

.stg-laty__feat span {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 12.5px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.42);
}

.stg-laty__feat span strong {
	font-weight: 600;
	color: rgba(255, 255, 255, 0.72);
}

.stg-laty__feat span em {
	font-style: italic;
	color: rgba(255, 255, 255, 0.55);
}

.stg-laty__feat--hl span strong {
	color: #ffffff;
}

.stg-laty__card--hero .stg-laty__feat span {
	color: rgba(255, 255, 255, 0.48);
}

.stg-laty__card--hero .stg-laty__feat span strong {
	color: rgba(255, 255, 255, 0.82);
}

.stg-laty__card--hero .stg-laty__feat--hl span strong {
	color: #ffffff;
}

/* ================================================
   CARD NOTE
   ================================================ */

.stg-laty__card-note {
	margin: 24px 0 0;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 10.5px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.16);
	text-align: center;
	letter-spacing: 0.02em;
}

/* ================================================
   GUARANTEE BAR
   ================================================ */

.stg-laty__guarantee-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 20px 28px;
	background: rgba(12, 12, 14, 0.35);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	max-width: 700px;
	margin: 0 auto;
}

.stg-laty__guarantee-icon {
	flex-shrink: 0;
}

.stg-laty__guarantee-inner p {
	margin: 0;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.4);
}

/* ================================================
   COMPETITOR COMPARISON TABLE
   ================================================ */

.stg-laty__compare {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.stg-laty__compare-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: clamp(22px, 3vw, 34px);
	letter-spacing: -0.02em;
	color: #ffffff;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.stg-laty__compare-sub {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.35);
	margin: 0 0 36px;
	max-width: 480px;
}

.stg-laty__compare-wrap {
	width: 100%;
	max-width: 900px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	background: rgba(12, 12, 14, 0.35);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.stg-laty__compare-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.stg-laty__compare-table th,
.stg-laty__compare-table td {
	padding: 13px 18px;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stg-laty__compare-table thead th {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	padding-bottom: 16px;
}

.stg-laty__compare-table thead th:first-child {
	text-align: left;
}

.stg-laty__compare-label {
	text-align: left !important;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.6);
}

.stg-laty__compare-table td {
	color: rgba(255, 255, 255, 0.35);
}

.stg-laty__compare-table td strong {
	color: #ffffff;
	font-weight: 700;
}

/* Highlighted column (STG) */
.stg-laty__compare-hl {
	background: rgba(255, 255, 255, 0.025);
	border-left: 1px solid rgba(255, 255, 255, 0.05);
	border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stg-laty__compare-table thead .stg-laty__compare-hl {
	color: #ffffff !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================================================
   SUPPORT TIERS
   ================================================ */

.stg-laty__support {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.stg-laty__support-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: clamp(20px, 3vw, 30px);
	letter-spacing: -0.02em;
	color: #ffffff;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.stg-laty__support-sub {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.35);
	margin: 0 0 36px;
	max-width: 520px;
}

.stg-laty__support-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	width: 100%;
	max-width: 960px;
	margin-bottom: 28px;
}

.stg-laty__support-card {
	background: rgba(12, 12, 14, 0.35);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 28px 22px;
	text-align: left;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.stg-laty__support-card:hover {
	border-color: rgba(255, 255, 255, 0.12);
	transform: translateY(-2px);
}

.stg-laty__support-name {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 10px;
}

.stg-laty__support-price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 18px;
}

.stg-laty__support-amount {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: #ffffff;
	letter-spacing: -0.02em;
}

.stg-laty__support-freq {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.3);
}

.stg-laty__support-items {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.stg-laty__support-items li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 12px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.4);
}

.stg-laty__support-items svg {
	flex-shrink: 0;
	margin-top: 1px;
	color: rgba(255, 255, 255, 0.2);
}

.stg-laty__support-note {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.18);
	max-width: 500px;
	margin: 0 auto;
}

/* ================================================
   SOCIAL PROOF
   ================================================ */

.stg-laty__proof {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.stg-laty__proof-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: clamp(22px, 3vw, 34px);
	letter-spacing: -0.02em;
	color: #ffffff;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.stg-laty__proof-sub {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.35);
	margin: 0 0 40px;
	max-width: 480px;
}

/* ── Metrics bar ── */

.stg-laty__proof-metrics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	width: 100%;
	max-width: 800px;
	margin-bottom: 40px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.stg-laty__proof-metric {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 28px 16px;
	background: rgba(12, 12, 14, 0.5);
}

.stg-laty__proof-metric-val {
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: 28px;
	letter-spacing: -0.03em;
	color: #ffffff;
	line-height: 1;
}

.stg-laty__proof-metric-label {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 11px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.3);
}

/* ── Testimonial cards ── */

.stg-laty__proof-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	width: 100%;
	max-width: 900px;
}

.stg-laty__proof-card {
	background: rgba(12, 12, 14, 0.4);
	backdrop-filter: blur(14px) saturate(1.2);
	-webkit-backdrop-filter: blur(14px) saturate(1.2);
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 28px 24px;
	margin: 0;
	text-align: left;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.stg-laty__proof-card:hover {
	border-color: rgba(255, 255, 255, 0.12);
	transform: translateY(-2px);
}

/* ── Glowing stars ── */

.stg-laty__proof-stars {
	display: flex;
	gap: 3px;
	margin-bottom: 14px;
	color: rgba(255, 255, 255, 0.85);
	filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.25))
	        drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.stg-laty__proof-card:hover .stg-laty__proof-stars {
	color: #ffffff;
	filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4))
	        drop-shadow(0 0 16px rgba(255, 255, 255, 0.15));
}

.stg-laty__proof-stars svg {
	transition: filter 0.3s ease, color 0.3s ease;
}

.stg-laty__proof-quote {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 13.5px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 0 20px;
	font-style: italic;
}

.stg-laty__proof-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.stg-laty__proof-avatar {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	flex-shrink: 0;
}

.stg-laty__proof-name {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.75);
	font-style: normal;
}

.stg-laty__proof-role {
	display: block;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.3);
	margin-top: 2px;
}

/* ================================================
   FAQs
   ================================================ */

.stg-laty__faq {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.stg-laty__faq-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: clamp(22px, 3vw, 34px);
	letter-spacing: -0.02em;
	color: #ffffff;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.stg-laty__faq-sub {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.35);
	margin: 0 0 36px;
	max-width: 520px;
}

.stg-laty__faq-list {
	width: 100%;
	max-width: 760px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.stg-laty__faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stg-laty__faq-item:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stg-laty__faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 4px;
	cursor: pointer;
	list-style: none;
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	text-align: left;
	transition: color 0.3s ease;
}

.stg-laty__faq-q::-webkit-details-marker {
	display: none;
}

.stg-laty__faq-q::marker {
	display: none;
	content: '';
}

.stg-laty__faq-q:hover {
	color: #ffffff;
}

.stg-laty__faq-icon {
	flex-shrink: 0;
	color: rgba(255, 255, 255, 0.3);
	transition: transform 0.3s ease, color 0.3s ease;
}

.stg-laty__faq-item[open] .stg-laty__faq-icon {
	transform: rotate(180deg);
	color: rgba(255, 255, 255, 0.6);
}

.stg-laty__faq-a {
	padding: 0 4px 20px;
}

.stg-laty__faq-a p {
	margin: 0;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 13px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.4);
	text-align: left;
}

/* ================================================
   CLOSING CTA — Editorial asymmetric layout
   ================================================ */

.stg-laty__closing {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: 0;
	overflow: hidden;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Dot grid SVG background */
.stg-laty__closing-dots {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

/* Gradient accent line at top */
.stg-laty__closing-line {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 30%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.25) 70%, transparent 100%);
	z-index: 2;
}

/* Editorial divider */
.stg-laty__closing-divider {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 32px 48px 0;
}

.stg-laty__closing-divider-rule {
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.06);
}

.stg-laty__closing-divider-label {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 500;
	font-size: 9px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.2);
}

/* Two-column layout */
.stg-laty__closing-cols {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 0;
	padding: 48px 48px 40px;
}

/* Left column — massive typographic anchor */
.stg-laty__closing-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding-right: 48px;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stg-laty__closing-zero {
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: clamp(72px, 10vw, 120px);
	letter-spacing: -0.06em;
	line-height: 0.85;
	color: #ffffff;
	display: block;
}

.stg-laty__closing-zero-label {
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: clamp(24px, 3.5vw, 40px);
	letter-spacing: -0.04em;
	color: rgba(255, 255, 255, 0.15);
	margin-top: 2px;
	display: block;
}

.stg-laty__closing-zero-sub {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.22);
	margin-top: 16px;
	display: block;
}

/* Right column — persuasion copy + CTA */
.stg-laty__closing-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 48px;
}

.stg-laty__closing-title {
	position: relative;
	z-index: 1;
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: clamp(20px, 2.6vw, 32px);
	letter-spacing: -0.03em;
	color: #ffffff;
	margin: 0 0 14px;
	text-transform: uppercase;
	line-height: 1.1;
}

.stg-laty__closing-title em {
	font-style: normal;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.25);
}

.stg-laty__closing-sub {
	position: relative;
	z-index: 1;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.35);
	margin: 0 0 28px;
}

/* CTA button — full-width, border-based, inverts on hover */
.stg-laty__closing-btn {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 28px;
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	color: #ffffff;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.15);
	cursor: pointer;
	overflow: hidden;
	transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.stg-laty__closing-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: #ffffff;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: -1;
}

.stg-laty__closing-btn:hover {
	color: #050507;
	border-color: #ffffff;
}

.stg-laty__closing-btn:hover::before {
	transform: scaleX(1);
}

.stg-laty__closing-btn-text {
	position: relative;
	z-index: 1;
}

.stg-laty__closing-btn-icon {
	position: relative;
	z-index: 1;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.stg-laty__closing-btn:hover .stg-laty__closing-btn-icon {
	transform: translateX(6px);
}

/* Note */
.stg-laty__closing-note {
	position: relative;
	z-index: 1;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.16);
	margin: 14px 0 0;
}

/* Bottom proof strip */
.stg-laty__closing-proof {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 18px 48px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 11px;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.2);
}

.stg-laty__closing-proof-sep {
	color: rgba(255, 255, 255, 0.1);
	font-size: 8px;
}

/* ================================================
   RESPONSIVE — Tablet (1024px)
   ================================================ */

@media (max-width: 1024px) {
	.stg-laty__inner {
		padding: 60px 24px 80px;
		gap: 56px;
	}

	.stg-laty__grid {
		gap: 10px;
	}

	.stg-laty__card-body {
		padding: 28px 22px;
	}

	.stg-laty__price {
		font-size: 32px;
	}

	.stg-laty__card--hero .stg-laty__price {
		font-size: 36px;
	}

	.stg-laty__plan-name {
		font-size: 22px;
	}

	.stg-laty__feat span {
		font-size: 12px;
	}
}

/* ================================================
   RESPONSIVE — Small Tablet (900px)
   ================================================ */

@media (max-width: 900px) {
	.stg-laty {
		min-height: auto;
	}

	[data-stg-tilt] {
		transform: none !important;
		transform-style: flat;
	}

	.stg-laty__cursor-glow {
		display: none;
	}

	.stg-laty__grid {
		grid-template-columns: 1fr;
		max-width: 520px;
		margin: 0 auto;
		gap: 16px;
	}

	.stg-laty__anchor-cards {
		grid-template-columns: 1fr;
		max-width: 360px;
		margin: 0 auto;
		gap: 8px;
	}

	.stg-laty__support-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto 28px;
		gap: 10px;
	}

	.stg-laty__price {
		font-size: 36px;
	}

	.stg-laty__card--hero .stg-laty__price {
		font-size: 40px;
	}

	.stg-laty__compare-table {
		min-width: 620px;
	}

	.stg-laty__proof-metrics {
		grid-template-columns: repeat(2, 1fr);
	}

	.stg-laty__proof-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin: 0 auto;
	}

	.stg-laty__closing-cols {
		grid-template-columns: 1fr;
		padding: 36px 28px 32px;
		gap: 28px;
	}

	.stg-laty__closing-left {
		padding-right: 0;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		padding-bottom: 28px;
		align-items: center;
		text-align: center;
	}

	.stg-laty__closing-right {
		padding-left: 0;
	}

	.stg-laty__closing-divider {
		padding: 28px 28px 0;
	}
}

/* ================================================
   RESPONSIVE — Mobile (600px)
   ================================================ */

@media (max-width: 600px) {
	.stg-laty__inner {
		padding: 48px 16px 64px;
		gap: 48px;
	}

	.stg-laty__card-body {
		padding: 24px 18px;
	}

	.stg-laty__title {
		font-size: clamp(26px, 7vw, 36px);
	}

	.stg-laty__subtitle {
		font-size: 14px;
	}

	.stg-laty__plan-name {
		font-size: 22px;
	}

	.stg-laty__feat span {
		font-size: 12px;
	}

	.stg-laty__support-card {
		padding: 22px 18px;
	}

	.stg-laty__guarantee-inner {
		flex-direction: column;
		text-align: center;
		gap: 10px;
		padding: 18px 20px;
	}

	.stg-laty__proof-metrics {
		grid-template-columns: repeat(2, 1fr);
	}

	.stg-laty__proof-metric-val {
		font-size: 22px;
	}

	.stg-laty__proof-card {
		padding: 22px 18px;
	}

	.stg-laty__faq-q {
		font-size: 13px;
		padding: 16px 4px;
	}

	.stg-laty__closing-divider {
		padding: 24px 20px 0;
	}

	.stg-laty__closing-cols {
		grid-template-columns: 1fr;
		padding: 32px 20px 28px;
		gap: 32px;
	}

	.stg-laty__closing-left {
		padding-right: 0;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		padding-bottom: 28px;
		align-items: center;
		text-align: center;
	}

	.stg-laty__closing-right {
		padding-left: 0;
	}

	.stg-laty__closing-btn {
		padding: 18px 24px;
	}

	.stg-laty__closing-proof {
		padding: 16px 20px;
		flex-wrap: wrap;
		gap: 8px 16px;
	}
}

/* ================================================
   ANIMATED GRADIENT BORDER (hero card via JS)
   ================================================ */

.stg-laty__card--hero {
	border-image-slice: 1;
}

/* ================================================
   STAGGER DELAYS for reveal children
   ================================================ */

.stg-laty__reveal--visible > .stg-laty__reveal-child:nth-child(1) { transition-delay: 0s; }
.stg-laty__reveal--visible > .stg-laty__reveal-child:nth-child(2) { transition-delay: 0.08s; }
.stg-laty__reveal--visible > .stg-laty__reveal-child:nth-child(3) { transition-delay: 0.16s; }
.stg-laty__reveal--visible > .stg-laty__reveal-child:nth-child(4) { transition-delay: 0.24s; }
.stg-laty__reveal--visible > .stg-laty__reveal-child:nth-child(5) { transition-delay: 0.32s; }

/* ================================================
   ENTRANCE ANIMATION — page load orchestration
   ================================================ */

@keyframes stg-laty-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-6px); }
}

.stg-laty__pill {
	animation: stg-laty-float 5s ease-in-out infinite;
}

/* ================================================
   FOCUS GLOW on CTA for keyboard nav
   ================================================ */

.stg-laty__cta:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3), 0 0 24px rgba(255, 255, 255, 0.06);
}

/* ================================================
   REDUCED MOTION
   ================================================ */

@media (prefers-reduced-motion: reduce) {
	.stg-laty__pill-dot,
	.stg-laty__mesh,
	.stg-laty__card--hero::before,
	.stg-laty__cta--solid::after,
	.stg-laty__pill {
		animation: none;
	}

	.stg-laty__mesh {
		opacity: 1;
	}

	.stg-laty__reveal-child {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.stg-laty__cursor-glow {
		display: none;
	}

	[data-stg-tilt] {
		transform: none !important;
		transition: none;
	}

	.stg-laty__card,
	.stg-laty__card:hover,
	.stg-laty__cta,
	.stg-laty__cta span,
	.stg-laty__feat,
	.stg-laty__feat-check,
	.stg-laty__support-card,
	.stg-laty__proof-card,
	.stg-laty__faq-icon,
	.stg-laty__faq-q {
		transition: none;
	}
}
