/* Home — v2-home.jsx animations + hero */

@keyframes v2-glow {
	0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
	50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.v2-grain {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
}

.necta-hero-wrap {
	position: relative;
	overflow: visible;
	background: var(--necta-cream);
	padding: 14px 0 0;
}

.necta-hero-scene {
	position: relative;
	margin: 0 14px;
	border-radius: 28px;
	overflow: hidden;
	background: linear-gradient(180deg, var(--necta-dark) 0%, var(--necta-dark-2) 100%);
	min-height: 940px;
	box-shadow: var(--necta-shadow-lg);
}

.necta-hero-scene__glow {
	position: absolute;
	bottom: -30%;
	left: 50%;
	transform: translateX(-50%);
	width: 1300px;
	height: 1300px;
	max-width: 150vw;
	max-height: 150vw;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232, 80, 2, 0.55) 0%, rgba(193, 8, 1, 0.18) 25%, transparent 55%);
	filter: blur(50px);
	animation: v2-glow 8s ease-in-out infinite;
	pointer-events: none;
}

.necta-hero-scene__glow-secondary {
	position: absolute;
	bottom: -15%;
	left: 50%;
	transform: translateX(-50%);
	width: min(1500px, 120vw);
	height: 600px;
	background: radial-gradient(ellipse at center, rgba(217, 195, 171, 0.07), transparent 60%);
	filter: blur(40px);
	pointer-events: none;
}

.necta-hero-scene__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 75%);
	pointer-events: none;
}

.necta-hero-scene__grain {
	position: absolute;
	inset: 0;
	opacity: 0.04;
	mix-blend-mode: overlay;
	pointer-events: none;
}

.necta-hero-scene__content {
	position: relative;
	z-index: 5;
	padding: 120px 56px 60px;
	text-align: center;
	color: var(--necta-white);
}

.necta-hero-scene__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 5px 14px 5px 5px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(20, 20, 20, 0.6);
	margin-bottom: 32px;
	backdrop-filter: blur(8px);
}

.necta-hero-scene__badge {
	font-family: var(--necta-font-mono);
	font-size: 10.5px;
	letter-spacing: 0.08em;
	padding: 3px 8px;
	background: rgba(232, 80, 2, 0.16);
	color: var(--necta-primary-light);
	border-radius: 999px;
	text-transform: uppercase;
	font-weight: 600;
}

.necta-hero-scene__eyebrow-text {
	font-size: 13px;
	color: var(--necta-gray);
}

.necta-hero-scene__title {
	font-size: 96px;
	font-weight: 500;
	line-height: 0.96;
	letter-spacing: -0.04em;
	margin: 0 0 28px;
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
	color: #fff;
}

.necta-hero-scene__title-serif {
	font-family: var(--necta-font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--necta-primary-light);
	font-size: 108px;
	display: inline-block;
}

.necta-hero-scene__subhead {
	font-size: 19px;
	line-height: 1.55;
	color: var(--necta-gray);
	max-width: 620px;
	margin: 0 auto 36px;
	letter-spacing: -0.01em;
}

.necta-hero-scene__ctas {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.necta-hero-scene__play-icon {
	width: 16px;
	height: 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 8px;
}

.necta-hero-scene__trial {
	color: #646464;
	margin: 0;
}

.necta-hero-scene__floaters-spacer,
.necta-hero-scene__floaters-wrap {
	position: relative;
	height: 320px;
	margin-top: 56px;
}

.necta-hero-scene__footer-strip {
	position: absolute;
	bottom: 24px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 20px;
	font-family: var(--necta-font-mono);
	font-size: 11px;
	color: #646464;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	z-index: 6;
}

.necta-hero-scene__footer-strip--bright { color: #fff; }
.necta-hero-scene__footer-dot { color: #3a3a3a; }

@media (max-width: 768px) {
	.necta-hero-scene {
		min-height: clamp(520px, 85vh, 940px);
		margin: 0 10px;
		border-radius: 20px;
	}

	.necta-hero-scene__content {
		padding: 80px 20px 48px;
	}

	.necta-hero-scene__title {
		font-size: clamp(2.5rem, 10vw, 3.5rem);
	}

	.necta-hero-scene__title-serif {
		font-size: clamp(2.75rem, 11vw, 4rem);
	}

	.necta-hero-scene__subhead {
		font-size: clamp(15px, 4vw, 18px);
	}

	.necta-hero-scene__footer-strip {
		font-size: 9px;
		gap: 6px 12px;
		padding: 0 12px;
	}

	.necta-nav--embedded {
		padding: 16px 20px;
	}
}

@media (max-width: 375px) {
	.necta-hero-scene__ctas {
		flex-direction: column;
		align-items: stretch;
	}

	.necta-hero-scene__ctas .v2-btn {
		width: 100%;
	}

	.necta-floaters__item {
		display: none;
	}
}

/* Floaters */
@keyframes v2-float-a { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(-2deg); } }
@keyframes v2-float-b { 0%, 100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
@keyframes v2-float-c { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-6px) rotate(-1deg); } }
@keyframes v2-float-d { 0%, 100% { transform: translateY(0) rotate(3deg); } 50% { transform: translateY(-12px) rotate(3deg); } }
@keyframes v2-quiz-a { 0%, 18% { opacity: 1; } 25%, 100% { opacity: 0; } }
@keyframes v2-quiz-b { 0%, 23% { opacity: 0; } 28%, 43% { opacity: 1; } 48%, 100% { opacity: 0; } }
@keyframes v2-quiz-c { 0%, 48% { opacity: 0; } 53%, 68% { opacity: 1; } 73%, 100% { opacity: 0; } }
@keyframes v2-quiz-d { 0%, 73% { opacity: 0; } 78%, 93% { opacity: 1; } 98%, 100% { opacity: 0; } }
@keyframes v2-toast-1 { 0%, 8% { opacity: 0; transform: translateY(10px); } 12%, 28% { opacity: 1; transform: translateY(0); } 32%, 100% { opacity: 0.55; } }
@keyframes v2-toast-2 { 0%, 28% { opacity: 0.55; } 32%, 52% { opacity: 1; } 56%, 100% { opacity: 0.55; } }
@keyframes v2-toast-3 { 0%, 52% { opacity: 0.55; } 56%, 76% { opacity: 1; } 80%, 100% { opacity: 0.55; } }
@keyframes v2-toast-4 { 0%, 76% { opacity: 0.55; } 80%, 96% { opacity: 1; } 100% { opacity: 0.55; } }
@keyframes v2-swatch-1 { 0%, 18% { transform: scale(1.15); outline: 1.5px solid #E85002; } 23%, 100% { transform: scale(1); outline: 1.5px solid transparent; } }
@keyframes v2-swatch-2 { 0%, 23% { transform: scale(1); } 28%, 43% { transform: scale(1.15); outline: 1.5px solid #E85002; } 48%, 100% { transform: scale(1); outline: none; } }
@keyframes v2-swatch-3 { 0%, 48% { transform: scale(1); } 53%, 68% { transform: scale(1.15); outline: 1.5px solid #E85002; } 73%, 100% { transform: scale(1); outline: none; } }
@keyframes v2-swatch-4 { 0%, 73% { transform: scale(1); } 78%, 93% { transform: scale(1.15); outline: 1.5px solid #E85002; } 98%, 100% { transform: scale(1); outline: none; } }
@keyframes v2-cart-slide { 0%, 15% { transform: translateX(8px); opacity: 0.7; } 25%, 85% { transform: translateX(0); opacity: 1; } 95%, 100% { transform: translateX(8px); opacity: 0.7; } }
@keyframes v2-tick { 0%, 90% { transform: scale(0); } 95% { transform: scale(1.4); } 100% { transform: scale(1); } }
@keyframes v2-pulse-ring { 0%, 100% { box-shadow: 0 0 0 0 rgba(232, 80, 2, 0.5); } 50% { box-shadow: 0 0 0 8px rgba(232, 80, 2, 0); } }

.necta-floaters {
	position: absolute;
	inset: 0;
	max-width: 1280px;
	margin: 0 auto;
	pointer-events: none;
}

.necta-floaters__item {
	position: absolute;
}

.necta-floaters__item--a { animation: v2-float-a 7s ease-in-out infinite; }
.necta-floaters__item--b { animation: v2-float-b 6s ease-in-out infinite; }
.necta-floaters__item--c { animation: v2-float-c 8s ease-in-out infinite; }
.necta-floaters__item--d { animation: v2-float-d 7s ease-in-out infinite; }

.necta-floaters__item.is-active {
	z-index: 20;
}

.necta-floaters__item.is-active .necta-floater {
	border-color: rgba(232, 80, 2, 0.45);
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(232, 80, 2, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transform: scale(1.04);
}

.necta-floater {
	padding: 14px;
	border-radius: 16px;
	background: rgba(20, 20, 20, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	text-align: left;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.necta-floater__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.necta-floater__label { font-family: var(--necta-font-mono); font-size: 9px; color: #646464; letter-spacing: 0.05em; }
.necta-floater__title { font-size: 13px; color: #fff; font-weight: 500; margin-bottom: 10px; }
.necta-floater__quiz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.necta-floater__quiz-opt { position: relative; overflow: hidden; padding: 8px 10px; border-radius: 8px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.06); font-size: 11px; color: #a7a7a7; }
.necta-floater__quiz-opt:nth-child(1)::before { content: ''; position: absolute; inset: 0; border-radius: 8px; background: rgba(232, 80, 2, 0.1); border: 1px solid rgba(232, 80, 2, 0.7); animation: v2-quiz-a 8s linear infinite; opacity: 0; }
.necta-floater__quiz-opt:nth-child(2)::before { content: ''; position: absolute; inset: 0; border-radius: 8px; background: rgba(232, 80, 2, 0.1); border: 1px solid rgba(232, 80, 2, 0.7); animation: v2-quiz-b 8s linear infinite; opacity: 0; }
.necta-floater__quiz-opt:nth-child(3)::before { content: ''; position: absolute; inset: 0; border-radius: 8px; background: rgba(232, 80, 2, 0.1); border: 1px solid rgba(232, 80, 2, 0.7); animation: v2-quiz-c 8s linear infinite; opacity: 0; }
.necta-floater__quiz-opt:nth-child(4)::before { content: ''; position: absolute; inset: 0; border-radius: 8px; background: rgba(232, 80, 2, 0.1); border: 1px solid rgba(232, 80, 2, 0.7); animation: v2-quiz-d 8s linear infinite; opacity: 0; }
.necta-floater__quiz-opt span { position: relative; z-index: 2; }

.necta-floater__bundle-list { display: flex; flex-direction: column; gap: 6px; }
.necta-floater__bundle-row { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.06); font-size: 11px; color: #a7a7a7; }
.necta-floater__bundle-row.is-selected { background: rgba(232, 80, 2, 0.1); border-color: #e85002; color: #fff; }
.necta-floater__radio { width: 12px; height: 12px; border-radius: 999px; border: 1.5px solid rgba(255, 255, 255, 0.2); flex-shrink: 0; }
.necta-floater__bundle-row.is-selected .necta-floater__radio { background: #e85002; border-color: #e85002; }
.necta-floater__price { margin-left: auto; text-align: right; color: #fff; font-weight: 500; }
.necta-floater__price small { display: block; font-size: 9px; color: #646464; text-decoration: line-through; font-weight: 400; }
.necta-floater__bundle-row .save { display: block; font-size: 9px; color: #5fb878; margin-top: 1px; }

.necta-floater-toasts { display: flex; flex-direction: column; gap: 8px; }
.necta-floater-toast { padding: 10px 14px; border-radius: 14px; background: rgba(14, 14, 14, 0.85); border: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; gap: 10px; font-size: 11px; }
.necta-floater-toast__avatar { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, #f16001, #c10801); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; flex-shrink: 0; }
.necta-floater-toast strong { display: block; color: #fff; font-weight: 500; }
.necta-floater-toast span { color: #a7a7a7; font-size: 10.5px; }
.necta-floater-toast__delta { font-family: var(--necta-font-mono); color: var(--necta-primary-light); font-weight: 500; margin-left: auto; }

.necta-floater__swatch-colors { display: flex; gap: 8px; margin-bottom: 12px; }
.necta-floater__swatch-dot { width: 28px; height: 28px; border-radius: 999px; border: 1.5px solid rgba(255, 255, 255, 0.15); outline-offset: 2px; }
.necta-floater__swatch-sizes { display: flex; gap: 6px; }
.necta-floater__swatch-sizes span { width: 30px; height: 28px; border-radius: 7px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; color: #a7a7a7; }
.necta-floater__swatch-sizes span.is-active { background: rgba(232, 80, 2, 0.12); border-color: #e85002; color: #fff; }

.necta-floater__cart-head { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 11px; color: #fff; }
.necta-floater__cart-item { display: flex; gap: 8px; align-items: center; padding: 6px; border-radius: 8px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); font-size: 10.5px; color: #fff; margin-bottom: 6px; }
.necta-floater__cart-item .thumb { width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0; }
.necta-floater__cart-item span:nth-child(2) { flex: 1; }
.necta-floater__gift { padding: 6px 8px; border-radius: 8px; background: rgba(232, 80, 2, 0.1); border: 1px solid rgba(232, 80, 2, 0.3); font-size: 10px; color: var(--necta-primary-light); display: flex; justify-content: space-between; }

.necta-floater__checkout-offer { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 10px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); margin-bottom: 8px; font-size: 11px; }
.necta-floater__checkout-offer strong { display: block; color: #fff; }
.necta-floater__checkout-offer span { color: #a7a7a7; font-size: 10px; }
.necta-floater__add-btn { padding: 5px 11px; border-radius: 999px; background: var(--necta-primary); color: #fff; font-size: 10px; animation: v2-pulse-ring 2.2s ease-in-out infinite; }
.necta-floater__checkout-total { display: flex; justify-content: space-between; padding: 8px 10px; border-radius: 10px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); font-size: 14px; color: #fff; font-weight: 500; }

.necta-floater__pdp-row { display: flex; align-items: center; gap: 8px; padding: 10px; border-radius: 10px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.06); margin-bottom: 8px; font-size: 11px; }
.necta-floater__pdp-row .thumb { width: 30px; height: 30px; border-radius: 6px; background: linear-gradient(135deg, #e85002, #7a1a02); }
.necta-floater__pdp-row strong { display: block; color: #fff; }
.necta-floater__hot { padding: 6px 10px; border-radius: 999px; background: rgba(232, 80, 2, 0.1); border: 1px solid rgba(232, 80, 2, 0.3); font-size: 10px; color: var(--necta-primary-light); display: flex; justify-content: space-between; margin-bottom: 6px; }
.necta-floater__pdp-cta { padding: 7px 10px; border-radius: 8px; background: var(--necta-primary); color: #fff; font-size: 11px; font-weight: 500; text-align: center; }

/* Logo strip */
.necta-logos {
	background: var(--necta-cream);
	padding: 56px 56px 28px;
	position: relative;
	overflow: hidden;
}

.necta-logos__wash {
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translateX(-50%);
	width: 1300px;
	height: 1300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232, 80, 2, 0.07) 0%, transparent 60%);
	filter: blur(40px);
	pointer-events: none;
}

.necta-logos__grid {
	position: relative;
	z-index: 2;
	max-width: 1380px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto repeat(8, 1fr);
	align-items: center;
	border: 1px solid var(--necta-border);
	border-radius: 14px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.4);
}

.necta-logos__label {
	font-family: var(--necta-font-mono);
	font-size: 10.5px;
	color: var(--necta-muted);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 20px 28px;
	border-right: 1px solid var(--necta-border);
	white-space: nowrap;
}

.necta-logos__item {
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.06em;
	color: #5a4a3a;
	text-align: center;
	padding: 20px 8px;
	border-right: 1px solid var(--necta-border);
	opacity: 0.6;
}

.necta-logos__item:last-child { border-right: none; }

@media (max-width: 900px) {
	.necta-logos__grid {
		display: flex;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.necta-logos__label {
		flex-shrink: 0;
		border-right: 1px solid var(--necta-border);
	}

	.necta-logos__item {
		flex-shrink: 0;
		min-width: 100px;
	}
}

/* Plugins showcase */
.necta-plugins-showcase {
	background: var(--necta-cream);
	padding: 48px var(--necta-section-pad) 110px;
	position: relative;
	overflow: hidden;
}

.necta-plugins-showcase__flash {
	position: absolute;
	top: 60px;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(ellipse at center, rgba(241, 96, 1, 0.22) 0%, rgba(232, 80, 2, 0.1) 35%, transparent 65%);
	filter: blur(50px);
	pointer-events: none;
	z-index: 1;
}

.necta-plugins-showcase__flash--core {
	top: 120px;
	width: 460px;
	height: 220px;
	background: radial-gradient(ellipse at center, rgba(241, 96, 1, 0.3) 0%, transparent 70%);
	filter: blur(40px);
}

.necta-plugins-showcase__spotlight[hidden] {
	display: none !important;
}

.necta-plugins-showcase__spotlight {
	position: relative;
	overflow: hidden;
}

.necta-plugins-showcase__spotlight::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -120px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(232, 80, 2, 0.1), transparent 60%);
	filter: blur(40px);
	pointer-events: none;
}

.necta-plugins-showcase__copy {
	position: relative;
	z-index: 2;
}

.necta-plugins-showcase__mock {
	position: relative;
	z-index: 2;
}

.necta-plugins-showcase__inner {
	position: relative;
	z-index: 2;
	max-width: 1380px;
	margin: 0 auto;
}

.necta-plugins-showcase__header {
	text-align: center;
	margin-bottom: 36px;
}

.necta-plugins-showcase__title {
	font-size: clamp(2rem, 5vw, 3.75rem);
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: -0.035em;
	margin: 14px auto;
	max-width: 880px;
}

.necta-plugins-showcase__lead {
	font-size: 16px;
	color: #5a4a3a;
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.55;
}

.necta-plugins-showcase__tabs {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 32px;
}

.necta-plugins-showcase__tab {
	padding: 10px 16px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--necta-border);
	color: #3a2a1a;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: inherit;
}

.necta-plugins-showcase__tab > span:first-child {
	font-size: 12px;
	opacity: 0.5;
	color: #e85002;
}

.necta-plugins-showcase__tab.is-active {
	background: var(--necta-ink);
	border-color: var(--necta-ink);
	color: #fff;
}

.necta-plugins-showcase__tab.is-active > span:first-child {
	opacity: 1;
	color: #f16001;
}

.necta-plugins-showcase__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.necta-plugins-showcase__spotlight {
	background: #fff;
	border: 1px solid var(--necta-border);
	border-radius: 24px;
	padding: 48px;
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 56px;
	align-items: center;
	min-height: 540px;
	box-shadow: 0 20px 50px rgba(26, 22, 18, 0.08);
}

.necta-plugins-showcase__chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 4px 12px 4px 4px;
	border-radius: 999px;
	background: rgba(232, 80, 2, 0.08);
	border: 1px solid rgba(232, 80, 2, 0.2);
	margin-bottom: 20px;
}

.necta-plugins-showcase__chip-icon {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: var(--necta-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.necta-plugins-showcase__copy h3 {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 500;
	line-height: 1.05;
	margin: 0 0 14px;
}

.necta-plugins-showcase__copy p {
	font-size: 16px;
	color: #5a4a3a;
	line-height: 1.55;
	margin: 0 0 24px;
}

.necta-plugins-showcase__stat {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 12px 18px;
	border-radius: 12px;
	background: var(--necta-cream);
	border: 1px solid var(--necta-border);
	margin-bottom: 24px;
}

.necta-plugins-showcase__stat-main strong {
	font-size: 28px;
	display: block;
	line-height: 1;
	letter-spacing: -0.025em;
}

.necta-plugins-showcase__stat-main .necta-mono {
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-top: 3px;
	display: block;
}

.necta-plugins-showcase__stat-divider {
	width: 1px;
	height: 36px;
	background: var(--necta-border);
	flex-shrink: 0;
}

.necta-plugins-showcase__stat-note {
	font-size: 12px;
	color: #5a4a3a;
	max-width: 220px;
	margin: 0;
	line-height: 1.4;
}

.necta-plugins-showcase__features {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 14px;
}

.necta-plugins-showcase__features li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.necta-plugins-showcase__features li::before {
	content: '✓';
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: rgba(232, 80, 2, 0.12);
	color: var(--necta-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	flex-shrink: 0;
	margin-top: 1px;
}

.necta-plugins-showcase__mock {
	min-height: 360px;
}

/* Plugin mockup shell */
.necta-pm-shell {
	border-radius: 18px;
	overflow: hidden;
	background: #0a0a0a;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
	color: #fff;
}

.necta-pm-shell__chrome {
	padding: 12px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 11px;
}

.necta-pm-shell__chrome-title {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
}

.necta-pm-shell__live {
	font-size: 10px;
	color: #646464;
}

.necta-pm-shell__body {
	padding: 24px;
}

.necta-pm-label {
	font-size: 10px;
	color: var(--necta-primary-light);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 10px;
}

.necta-pm-title {
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 18px;
}

.necta-pm-title--sm {
	font-size: 16px;
	margin-bottom: 14px;
}

.necta-pm-label--muted {
	color: #a7a7a7;
	margin-bottom: 8px;
}

.necta-pm-bundle-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 13px;
	color: #a7a7a7;
	margin-bottom: 8px;
}

.necta-pm-bundle-row.is-active {
	background: rgba(232, 80, 2, 0.08);
	border-color: #e85002;
	color: #fff;
}

.necta-pm-bundle-row span:last-child {
	margin-left: auto;
	font-weight: 500;
	color: #fff;
}

.necta-pm-bundle-list,
.necta-pm-upsell-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.necta-pm-bundle-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.necta-pm-bundle-card.is-active {
	background: rgba(232, 80, 2, 0.08);
	border: 1.5px solid #e85002;
}

.necta-pm-bundle-card__radio {
	width: 14px;
	height: 14px;
	border-radius: 999px;
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	flex-shrink: 0;
}

.necta-pm-bundle-card.is-active .necta-pm-bundle-card__radio {
	background: #e85002;
	border-color: #e85002;
}

.necta-pm-bundle-card__thumb {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	background: linear-gradient(135deg, #d9c3ab, #8c7a64);
	flex-shrink: 0;
}

.necta-pm-bundle-card__thumb.is-qr {
	background: repeating-conic-gradient(#fff 0% 25%, #1a1a1a 0% 50%) 50% / 8px 8px;
}

.necta-pm-bundle-card__copy {
	flex: 1;
	min-width: 0;
}

.necta-pm-bundle-card__title-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.necta-pm-bundle-card__title-row strong {
	font-size: 13px;
	font-weight: 500;
	color: #fff;
}

.necta-pm-bundle-card__badge {
	font-size: 9px;
	color: #f16001;
	padding: 1px 6px;
	border-radius: 4px;
	background: rgba(232, 80, 2, 0.16);
	border: 1px solid rgba(232, 80, 2, 0.25);
}

.necta-pm-bundle-card__gift {
	font-size: 11px;
	color: #5fb878;
}

.necta-pm-bundle-card__sub {
	display: block;
	font-size: 11px;
	color: #a7a7a7;
	margin-top: 1px;
}

.necta-pm-bundle-card__price {
	text-align: right;
}

.necta-pm-bundle-card__price strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
}

.necta-pm-bundle-card__price s {
	font-size: 10px;
	color: #646464;
	text-decoration: line-through;
}

.necta-pm-upsell-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.necta-pm-upsell-row.is-active {
	background: rgba(232, 80, 2, 0.06);
	border-color: rgba(232, 80, 2, 0.4);
}

.necta-pm-upsell-row__thumb {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	flex-shrink: 0;
}

.necta-pm-upsell-row__copy {
	flex: 1;
	min-width: 0;
}

.necta-pm-upsell-row__copy strong {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
}

.necta-pm-upsell-row__copy span {
	display: block;
	font-size: 11px;
	color: #a7a7a7;
	margin-top: 1px;
}

.necta-pm-upsell-row__price {
	font-size: 13px;
	font-weight: 500;
	color: #a7a7a7;
}

.necta-pm-upsell-row.is-active .necta-pm-upsell-row__price {
	color: #f16001;
}

.necta-pm-upsell-row__btn {
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
}

.necta-pm-upsell-row.is-active .necta-pm-upsell-row__btn {
	background: #e85002;
}

.necta-pm-order-total {
	margin-top: 14px;
	padding: 10px 14px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.necta-pm-order-total .necta-mono {
	color: #646464;
	font-size: 10px;
}

.necta-pm-order-total > span:last-child {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}

.necta-pm-order-total em {
	font-style: normal;
	font-size: 11px;
	color: #5fb878;
	margin-left: 4px;
}

.necta-pm-cart-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
	font-size: 14px;
	color: #fff;
}

.necta-pm-cart-head .necta-mono {
	font-size: 10px;
	color: #646464;
}

.necta-pm-cart-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 14px;
}

.necta-pm-cart-row {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 10px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.necta-pm-cart-row__thumb {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	flex-shrink: 0;
}

.necta-pm-cart-row__copy {
	flex: 1;
	min-width: 0;
}

.necta-pm-cart-row__copy strong {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
}

.necta-pm-cart-row__copy span {
	display: block;
	font-size: 11px;
	color: #a7a7a7;
	margin-top: 1px;
}

.necta-pm-cart-row__price {
	font-size: 13px;
	font-weight: 500;
	color: #fff;
}

.necta-pm-gift-progress {
	padding: 12px;
	border-radius: 12px;
	margin-bottom: 14px;
	background: rgba(232, 80, 2, 0.06);
	border: 1px solid rgba(232, 80, 2, 0.25);
}

.necta-pm-gift-progress__head {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	font-size: 12px;
	color: #f16001;
	font-weight: 500;
}

.necta-pm-gift-progress__head .necta-mono {
	font-size: 10px;
}

.necta-pm-gift-progress__bar {
	height: 5px;
	border-radius: 3px;
	background: rgba(232, 80, 2, 0.2);
	overflow: hidden;
}

.necta-pm-gift-progress__bar span {
	display: block;
	height: 100%;
	width: 100%;
	background: #e85002;
}

.necta-pm-cart-checkout {
	width: 100%;
	padding: 13px 14px;
	border-radius: 10px;
	background: #fff;
	color: #0a0a0a;
	border: none;
	font-size: 13px;
	font-weight: 500;
	font-family: inherit;
	cursor: default;
}

.necta-pm-checkout-offers {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 14px;
}

.necta-pm-checkout-offer {
	padding: 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.necta-pm-checkout-offer.is-active {
	background: rgba(232, 80, 2, 0.06);
	border: 1.5px solid #e85002;
}

.necta-pm-checkout-offer__head {
	display: flex;
	align-items: center;
	gap: 8px;
}

.necta-pm-checkout-offer__icon {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.necta-pm-checkout-offer__head strong {
	font-size: 13px;
	font-weight: 500;
	color: #fff;
}

.necta-pm-checkout-offer__desc {
	font-size: 11px;
	color: #a7a7a7;
}

.necta-pm-checkout-offer__foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 4px;
}

.necta-pm-checkout-offer__price {
	font-size: 13px;
	font-weight: 500;
	color: #fff;
}

.necta-pm-checkout-offer.is-active .necta-pm-checkout-offer__price {
	color: #f16001;
}

.necta-pm-checkout-offer__btn {
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 11px;
	font-weight: 500;
}

.necta-pm-checkout-offer.is-active .necta-pm-checkout-offer__btn {
	background: #e85002;
}

.necta-pm-checkout-totals {
	margin-top: 16px;
	padding: 14px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 12px;
	color: #a7a7a7;
}

.necta-pm-checkout-totals > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4px;
}

.necta-pm-checkout-totals > div span:last-child {
	color: #fff;
}

.necta-pm-checkout-totals .is-accent {
	color: #f16001 !important;
}

.necta-pm-checkout-totals__total {
	margin-bottom: 0 !important;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	align-items: baseline !important;
}

.necta-pm-checkout-totals__total strong {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}

.necta-pm-swatches {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 16px;
}

.necta-pm-swatches__preview {
	aspect-ratio: 4 / 5;
	border-radius: 12px;
	background: linear-gradient(135deg, #e85002 0%, #c10801 70%, #5a1a02 100%);
	position: relative;
	overflow: hidden;
}

.necta-pm-swatches__preview::after {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 14px, rgba(0, 0, 0, 0.04) 14px 28px);
	mix-blend-mode: overlay;
}

.necta-pm-swatches__badge {
	position: absolute;
	top: 8px;
	left: 8px;
	padding: 3px 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	font-size: 10px;
	color: #1a1612;
	letter-spacing: 0.06em;
	z-index: 1;
}

.necta-pm-swatches__colors {
	display: flex;
	gap: 8px;
	margin: 8px 0 16px;
}

.necta-pm-swatches__dot {
	width: 28px;
	height: 28px;
	border-radius: 999px;
	border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.necta-pm-swatches__dot.is-active {
	border-color: #fff;
	outline: 1.5px solid #e85002;
	outline-offset: 2px;
}

.necta-pm-swatches__fit {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 8px;
}

.necta-pm-swatches__fit span {
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 11px;
	color: #a7a7a7;
}

.necta-pm-swatches__fit span.is-active {
	background: rgba(232, 80, 2, 0.12);
	border-color: #e85002;
	color: #fff;
}

.necta-pm-pdp {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.necta-pm-pdp__urgency {
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(232, 80, 2, 0.08);
	border: 1px solid rgba(232, 80, 2, 0.3);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: #f16001;
}

.necta-pm-pdp__urgency > span:first-child {
	display: flex;
	align-items: center;
	gap: 6px;
}

.necta-pm-pdp__dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #e85002;
}

.necta-pm-pdp__stock {
	padding: 10px 14px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: #a7a7a7;
}

.necta-pm-pdp__stock-bars {
	display: flex;
	gap: 2px;
}

.necta-pm-pdp__stock-bars span {
	width: 6px;
	height: 14px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.08);
}

.necta-pm-pdp__stock-bars span.is-filled {
	background: #e85002;
}

.necta-pm-pdp__fbt {
	padding: 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.necta-pm-pdp__fbt-products {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 10px;
}

.necta-pm-pdp__fbt-thumb {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	position: relative;
}

.necta-pm-pdp__fbt-thumb .necta-pm-check {
	position: absolute;
	top: -4px;
	right: -4px;
	width: 16px;
	height: 16px;
	font-size: 10px;
}

.necta-pm-pdp__fbt-plus {
	color: #646464;
	font-size: 14px;
}

.necta-pm-pdp__cta {
	padding: 13px 16px;
	border-radius: 10px;
	background: #e85002;
	color: #fff;
	border: none;
	font-size: 13px;
	font-weight: 500;
	font-family: inherit;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	cursor: default;
}

.necta-pm-checkout-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.necta-pm-checkout-grid > div {
	padding: 10px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 11px;
}

.necta-pm-checkout-grid > div.is-active {
	background: rgba(232, 80, 2, 0.1);
	border-color: rgba(232, 80, 2, 0.5);
}

.necta-pm-checkout-grid strong {
	display: block;
	color: #fff;
}

.necta-floater__quiz-opt.is-selected {
	background: rgba(232, 80, 2, 0.08);
	border-color: #e85002;
	color: #fff;
	display: flex;
	justify-content: space-between;
}

.necta-pm-check {
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: #e85002;
	color: #fff;
	font-size: 9px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.necta-pm-bundle-preview {
	padding: 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	margin-top: 18px;
}

.necta-pm-colors {
	display: flex;
	gap: 8px;
	margin: 10px 0;
}

.necta-pm-colors span {
	flex: 1;
	aspect-ratio: 1;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.necta-pm-colors span:nth-child(1) { background: linear-gradient(135deg, #e85002, #7a1a02); }
.necta-pm-colors span:nth-child(2) { background: linear-gradient(135deg, #1f1f1f, #0a0a0a); }
.necta-pm-colors span:nth-child(3) { background: linear-gradient(135deg, #d9c3ab, #8c7a64); }

.necta-pm-bundle-footer {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
}

.necta-pm-bundle-footer s {
	color: #646464;
}

@keyframes v2-bundle-pop {
	0%, 20% { opacity: 0; transform: translateY(-8px) scale(0.92); }
	35%, 90% { opacity: 1; transform: translateY(0) scale(1); }
	100% { opacity: 0; transform: translateY(-8px) scale(0.92); }
}

@media (max-width: 900px) {
	.necta-plugins-showcase {
		padding: 32px 20px 64px;
	}

	.necta-plugins-showcase__spotlight {
		grid-template-columns: 1fr;
		padding: 28px;
	}
}

.necta-faq__row {
	background: #fff;
	border: 1px solid var(--necta-border);
	border-radius: 14px;
	padding: 16px 20px;
	margin-bottom: 10px;
}

.necta-faq__row summary {
	cursor: pointer;
	font-weight: 500;
	list-style: none;
}

.necta-faq__row summary::-webkit-details-marker {
	display: none;
}

.necta-faq__row p {
	margin: 12px 0 0;
	color: var(--necta-muted);
	font-size: 15px;
	line-height: 1.55;
}

.necta-bento {
	background: var(--necta-dark);
	color: #fff;
	padding: clamp(60px, 10vw, 100px) var(--necta-section-pad);
}

.necta-bento__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	max-width: 1380px;
	margin: 0 auto 48px;
}

.necta-bento__aside {
	font-size: 14px;
	color: #8a8a8a;
	max-width: 340px;
	margin: 0;
	line-height: 1.55;
	text-align: right;
}

.necta-bento__tile-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 8px;
}

.necta-bento__metric-pill {
	padding: 3px 9px;
	border-radius: 999px;
	background: rgba(232, 80, 2, 0.1);
	border: 1px solid rgba(232, 80, 2, 0.25);
	color: var(--necta-primary-light);
	font-family: var(--necta-font-mono);
	font-size: 10px;
	font-weight: 500;
	flex-shrink: 0;
}

.necta-bento__tile--closer {
	background: linear-gradient(135deg, #1a0a05 0%, #0a0402 60%, #000 100%);
	grid-column: span 2;
}

.necta-bento__closer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
	height: 100%;
}

.necta-bento__closer-grid h3 {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.05;
	margin: 14px 0 0;
}

.necta-bento__closer-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 13.5px;
	color: #d7d7d7;
}

.necta-bento__closer-list li::before {
	content: '✓';
	display: inline-flex;
	width: 16px;
	height: 16px;
	margin-right: 10px;
	border-radius: 999px;
	background: rgba(232, 80, 2, 0.18);
	color: var(--necta-primary-light);
	font-size: 10px;
	align-items: center;
	justify-content: center;
}

.necta-bento__title {
	font-size: clamp(2rem, 5vw, 3.75rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.035em;
	margin: 14px 0 0;
	max-width: 800px;
}

.necta-bento__grid {
	max-width: 1380px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: minmax(280px, 320px);
	gap: 12px;
}

.necta-bento__tile {
	position: relative;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	padding: 24px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.necta-bento__tile--wide { grid-column: span 2; }

.necta-bento__eyebrow {
	font-family: var(--necta-font-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--necta-primary-light);
}

.necta-bento__tile h3 {
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	font-weight: 500;
	margin: 10px 0 8px;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.necta-bento__tile p {
	font-size: 13px;
	color: #8a8a8a;
	line-height: 1.5;
	margin: 0;
	max-width: 320px;
}


.necta-social {
	padding: var(--necta-section-pad);
	background: var(--necta-cream);
}

.necta-social__grid {
	max-width: 1380px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 16px;
}

.necta-social__quote {
	font-size: 15px;
	line-height: 1.55;
	color: var(--necta-ink);
	margin: 0 0 16px;
}

.necta-cta-final {
	margin: 0 14px 14px;
	border-radius: var(--necta-radius-lg);
	padding: clamp(48px, 8vw, 80px) var(--necta-section-pad);
	text-align: center;
	background: linear-gradient(180deg, var(--necta-dark) 0%, var(--necta-dark-2) 100%);
	color: #fff;
}

/* Stories */
.necta-stories__layout {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 48px;
	align-items: center;
}

.necta-stories__people {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
}

.necta-stories__person {
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid transparent;
	cursor: pointer;
	margin-bottom: 6px;
}

.necta-stories__person.is-active {
	background: #fff;
	border-color: var(--necta-border);
	box-shadow: 0 8px 24px rgba(26, 22, 18, 0.06);
}

.necta-stories__person strong {
	display: block;
	font-size: 14px;
}

.necta-stories__person span {
	font-size: 12px;
	color: var(--necta-muted);
}

.necta-stories__person em {
	display: block;
	font-style: normal;
	font-family: var(--necta-font-mono);
	font-size: 11px;
	color: var(--necta-primary);
	margin-top: 4px;
}

.necta-stories__video-card {
	aspect-ratio: 16/10;
	border-radius: 18px;
	background: linear-gradient(145deg, #0a0a0a, #1a1612);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: #fff;
}

.necta-stories__play {
	width: 56px;
	height: 56px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(232, 80, 2, 0.9);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.necta-stories__play:hover {
	transform: scale(1.05);
	box-shadow: 0 12px 32px rgba(232, 80, 2, 0.45);
}

.necta-stories__play-icon {
	width: 16px;
	height: 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 8px;
	line-height: 1;
}

/* Missed sales */
.necta-missed {
	background: var(--necta-cream);
}

.necta-missed__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 40px;
	align-items: center;
	max-width: 1380px;
}

.necta-missed__copy h2 {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 500;
	line-height: 1.05;
	margin: 12px 0 16px;
}

.necta-missed__stat {
	text-align: center;
	padding: 48px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--necta-border);
}

.necta-missed__stat strong {
	display: block;
	font-size: 64px;
	font-weight: 500;
	letter-spacing: -0.04em;
	color: var(--necta-primary);
}

/* Testimonials */
.necta-testimonials {
	background: #f6f2ec;
	padding: 100px var(--necta-section-pad) 110px;
	position: relative;
	overflow: hidden;
}

.necta-testimonials::before {
	content: '';
	position: absolute;
	top: -30%;
	left: 50%;
	transform: translateX(-50%);
	width: 1200px;
	height: 1200px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232, 80, 2, 0.08) 0%, transparent 60%);
	filter: blur(40px);
	pointer-events: none;
	z-index: 0;
}

.necta-testimonials__inner {
	max-width: 1380px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.necta-testimonials__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: 56px;
	flex-wrap: wrap;
}

.necta-testimonials__head h2 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.035em;
	margin: 14px 0 0;
	max-width: 700px;
}

.necta-testimonials__stats strong {
	letter-spacing: -0.025em;
}

.necta-testimonials__stats {
	display: flex;
	gap: 22px;
	align-items: center;
}

.necta-testimonials__stats strong {
	display: block;
	font-size: 36px;
	font-weight: 500;
}

.necta-testimonials__grid {
	display: grid;
	gap: 14px;
}

.necta-testimonials__grid--top {
	grid-template-columns: 1.4fr 1fr 1fr;
}

.necta-testimonials__grid--bottom {
	grid-template-columns: 1fr 1.4fr;
	margin-top: 14px;
}

.necta-tc {
	background: #fff;
	border: 1px solid #e8e0d4;
	border-radius: 18px;
	padding: 28px;
	margin: 0;
	display: flex;
	flex-direction: column;
	min-height: 240px;
	position: relative;
}

.necta-tc__quote {
	font-family: var(--necta-font-serif);
	font-size: 80px;
	line-height: 0.5;
	color: rgba(232, 80, 2, 0.4);
	margin-bottom: 4px;
}

.necta-testimonials__star,
.necta-testimonials__plus {
	color: var(--necta-primary);
}

.necta-testimonials__stats-divider {
	width: 1px;
	height: 36px;
	background: #d8cdb8;
	flex-shrink: 0;
}

.necta-tc--big {
	padding: 36px;
	min-height: 280px;
}

.necta-tc p {
	font-size: 16px;
	line-height: 1.35;
	margin: 0 0 28px;
	flex: 1;
}

.necta-tc--big p {
	font-size: 22px;
}

.necta-tc footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 16px;
	border-top: 1px solid var(--necta-border);
	font-size: 13px;
}

.necta-tc__avatar {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: linear-gradient(135deg, #d9c3ab, #8c7a64);
	flex-shrink: 0;
}

.necta-tc footer div {
	flex: 1;
	margin-left: 12px;
}

.necta-tc footer span {
	display: block;
	font-size: 11px;
	color: var(--necta-muted);
}

.necta-tc__logo {
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.06em;
	color: var(--necta-muted);
}

.necta-tc-band {
	position: relative;
	overflow: hidden;
	background: var(--necta-dark);
	color: #fff;
	border-radius: 18px;
	padding: 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.necta-tc-band::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232, 80, 2, 0.22) 0%, transparent 65%);
	filter: blur(30px);
	pointer-events: none;
}

.necta-tc-band > * {
	position: relative;
	z-index: 1;
}

.necta-tc-band__metrics {
	display: flex;
	gap: 36px;
}

.necta-tc-band__metrics strong {
	display: block;
	font-size: 32px;
}

@media (max-width: 1100px) {
	.necta-stories__layout,
	.necta-missed__inner {
		grid-template-columns: 1fr;
	}

	.necta-testimonials__grid--top,
	.necta-testimonials__grid--bottom {
		grid-template-columns: 1fr;
	}

	.necta-bento__closer-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 1100px) {
	.necta-bento__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.necta-bento__tile--wide { grid-column: span 2; }
}

@media (max-width: 640px) {
	.necta-bento__grid {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
	}
	.necta-bento__tile--wide { grid-column: span 1; }
}

/* Bento illustrations */
.necta-bento-illus {
	padding: 16px;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.05);
	margin-top: auto;
	font-size: 11px;
	color: #a7a7a7;
}

.necta-bento-illus__label {
	font-family: var(--necta-font-mono);
	font-size: 9px;
	color: var(--necta-primary-light);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 6px;
}

.necta-bento-illus__q {
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	margin: 0 0 10px;
}

.necta-bento-illus__quiz {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
}

.necta-bento-illus__opt {
	position: relative;
	overflow: hidden;
	padding: 9px 10px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.necta-bento-illus__opt::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 8px;
	background: rgba(232, 80, 2, 0.1);
	border: 1px solid rgba(232, 80, 2, 0.7);
	opacity: 0;
}

.necta-bento-illus__opt[data-anim="0"]::before { animation: v2-quiz-a 8s linear infinite; }
.necta-bento-illus__opt[data-anim="1"]::before { animation: v2-quiz-b 8s linear infinite; }
.necta-bento-illus__opt[data-anim="2"]::before { animation: v2-quiz-c 8s linear infinite; }
.necta-bento-illus__opt[data-anim="3"]::before { animation: v2-quiz-d 8s linear infinite; }

.necta-bento-illus__colors {
	display: flex;
	gap: 6px;
	position: relative;
	margin-bottom: 8px;
}

.necta-bento-illus__colors span {
	flex: 1;
	aspect-ratio: 1;
	border-radius: 8px;
}

.necta-bento-illus__colors span:nth-child(1) { background: linear-gradient(135deg, #e85002, #7a1a02); }
.necta-bento-illus__colors span:nth-child(2) { background: linear-gradient(135deg, #1f1f1f, #0a0a0a); }
.necta-bento-illus__colors span:nth-child(3) { background: linear-gradient(135deg, #d9c3ab, #8c7a64); }
.necta-bento-illus__colors span.is-pop { animation: v2-bundle-pop 4s ease-in-out infinite; }

.necta-bento-illus__badge {
	position: absolute;
	top: -6px;
	right: -6px;
	padding: 3px 8px;
	border-radius: 999px;
	background: var(--necta-primary);
	color: #fff;
	font-size: 10px;
	font-family: var(--necta-font-mono);
}

.necta-bento-illus__row,
.necta-bento-illus__line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	padding: 6px;
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.02);
	margin-bottom: 6px;
	color: #fff;
}

.necta-bento-illus__line .thumb {
	width: 24px;
	height: 24px;
	border-radius: 6px;
	flex-shrink: 0;
}

.necta-bento-illus__line .thumb.t1 { background: linear-gradient(135deg, #e85002, #7a1a02); }
.necta-bento-illus__line .thumb.t2 { background: linear-gradient(135deg, #d9c3ab, #8c7a64); }

.necta-bento-illus__gift {
	padding: 6px 10px;
	border-radius: 7px;
	background: rgba(232, 80, 2, 0.1);
	border: 1px solid rgba(232, 80, 2, 0.3);
	color: var(--necta-primary-light);
	font-size: 10px;
}

.necta-bento-illus__upsell {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.03);
}

.necta-bento-illus__upsell .thumb {
	width: 30px;
	height: 30px;
	border-radius: 7px;
	background: linear-gradient(135deg, #e85002, #7a1a02);
}

.necta-bento-illus__upsell strong {
	display: block;
	color: #fff;
	font-size: 11px;
}

.necta-bento-illus__upsell small {
	font-size: 9.5px;
}

.necta-bento-illus__add {
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--necta-primary);
	color: #fff;
	font-size: 10.5px;
	animation: v2-pulse-ring 2.2s ease-in-out infinite;
}

.necta-bento-illus__checkout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.necta-bento-illus__checkout > div {
	padding: 10px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.necta-bento-illus__checkout > div.is-active {
	background: rgba(232, 80, 2, 0.1);
	border-color: rgba(232, 80, 2, 0.5);
}

.necta-bento-illus__checkout strong {
	display: block;
	color: #fff;
	font-size: 11px;
}

.necta-bento-illus__checkout em {
	color: var(--necta-primary-light);
	font-style: normal;
	font-weight: 500;
}

.necta-bento-illus__swatches {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}

.necta-bento-illus__swatches span {
	width: 26px;
	height: 26px;
	border-radius: 999px;
	border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.necta-bento-illus__sizes {
	display: flex;
	gap: 6px;
}

.necta-bento-illus__sizes span {
	width: 28px;
	height: 26px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.necta-bento-illus__sizes span.is-on {
	background: rgba(232, 80, 2, 0.12);
	border-color: #e85002;
	color: #fff;
}

.necta-bento-illus__hot {
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(232, 80, 2, 0.1);
	border: 1px solid rgba(232, 80, 2, 0.3);
	color: var(--necta-primary-light);
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	font-size: 10px;
}

.necta-bento-illus__atc {
	padding: 8px 12px;
	border-radius: 8px;
	background: var(--necta-primary);
	color: #fff;
	text-align: center;
	font-weight: 500;
	animation: v2-pulse-ring 2.6s ease-in-out infinite;
}

.necta-bento__tile {
	display: flex;
	flex-direction: column;
}

/* Plugins showcase fix */
.necta-plugins-showcase [hidden] {
	display: none !important;
}

.necta-plugins-showcase__spotlight {
	display: grid;
}

.necta-tc footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

/* Footer V2 */
.necta-footer-v2 {
	background: var(--necta-dark);
	color: #fff;
	padding: 80px var(--necta-section-pad) 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.necta-footer-v2__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
	gap: 32px;
	margin-bottom: 64px;
	max-width: 1380px;
	margin-left: auto;
	margin-right: auto;
}

.necta-footer-v2__brand p {
	font-size: 14px;
	color: #a7a7a7;
	line-height: 1.55;
	margin: 16px 0 0;
	max-width: 280px;
}

.necta-footer-v2__col-title {
	font-family: var(--necta-font-mono);
	font-size: 11px;
	color: #646464;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 16px;
}

.necta-footer-v2 ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.necta-footer-v2 a {
	font-size: 13.5px;
	color: #a7a7a7;
	text-decoration: none;
}

.necta-footer-v2 a:hover {
	color: #fff;
}

.necta-footer-v2__bottom {
	max-width: 1380px;
	margin: 0 auto;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.necta-footer-v2__bottom .necta-mono {
	font-size: 11px;
	color: #646464;
}

.necta-footer-v2__bottom-links {
	display: flex;
	gap: 24px;
	font-size: 12px;
	color: #a7a7a7;
}

.necta-footer-v2__status {
	color: #5fb878;
}

/* V2 CTA */
.necta-v2-cta-wrap {
	padding: 0 var(--necta-section-pad) 80px;
	background: var(--necta-dark);
}

.necta-v2-cta {
	position: relative;
	overflow: hidden;
	border-radius: 28px;
	background: linear-gradient(180deg, #131313 0%, #060606 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 80px;
	max-width: 1380px;
	margin: 0 auto;
}

.necta-v2-cta__glow {
	position: absolute;
	bottom: -60%;
	left: 50%;
	transform: translateX(-50%);
	width: 1200px;
	height: 1200px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232, 80, 2, 0.3) 0%, transparent 60%);
	filter: blur(40px);
	pointer-events: none;
}

.necta-v2-cta__grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 100%, black 0%, transparent 70%);
	pointer-events: none;
}

.necta-v2-cta__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
}

.necta-v2-cta__copy h2 {
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.035em;
	margin: 14px 0 16px;
	color: #fff;
}

.necta-v2-cta__lead {
	font-size: 17px;
	color: #a7a7a7;
	line-height: 1.55;
	max-width: 540px;
	margin: 0 0 36px;
}

.necta-v2-cta__btns {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.necta-v2-cta__icon {
	flex-shrink: 0;
	position: relative;
	width: 280px;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.necta-v2-cta__icon-glow {
	position: absolute;
	inset: 0;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(232, 80, 2, 0.25), transparent 60%);
	filter: blur(20px);
}

@media (max-width: 1100px) {
	.necta-footer-v2__grid {
		grid-template-columns: 1fr 1fr;
	}

	.necta-v2-cta__inner {
		flex-direction: column;
		text-align: center;
	}

	.necta-v2-cta {
		padding: 48px 32px;
	}

	.necta-v2-cta__btns {
		justify-content: center;
	}
}

@media (max-width: 900px) {
	.necta-nav:not(.necta-nav--floating) .necta-nav__pill {
		display: none;
		position: absolute;
		top: 100%;
		left: 14px;
		right: 14px;
		width: auto;
		transform: none;
		flex-direction: column;
		align-items: stretch;
		padding: 12px;
		margin-top: 8px;
		background: rgba(255, 255, 255, 0.98);
		border: 1px solid rgba(26, 22, 18, 0.08);
		border-radius: 14px;
		box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
		z-index: 60;
	}

	.necta-nav--dark:not(.necta-nav--floating) .necta-nav__pill {
		background: rgba(16, 16, 16, 0.98);
		border-color: rgba(255, 255, 255, 0.08);
	}

	.necta-nav.is-mobile-open .necta-nav__pill {
		display: flex;
	}

	.necta-nav__toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border-radius: 10px;
		border: 1px solid rgba(26, 22, 18, 0.1);
		background: transparent;
		font-size: 18px;
		cursor: pointer;
	}

	.necta-nav--dark .necta-nav__toggle {
		border-color: rgba(255, 255, 255, 0.12);
		color: #fff;
	}

	.necta-stories-v2__inner {
		grid-template-columns: 1fr;
	}

	.necta-stories-v2__cards {
		height: 420px;
		margin-top: 32px;
	}

	.necta-missed-v2__grid {
		grid-template-columns: 1fr;
	}

	.necta-pricing-v2__packs {
		grid-template-columns: 1fr 1fr;
	}

	.necta-pricing-v2__staging {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

/* V2 Stories */
@keyframes v2-play-ripple {
	0% { transform: scale(1); opacity: 0.8; }
	100% { transform: scale(1.35); opacity: 0; }
}

.necta-stories-v2 {
	position: relative;
	padding: 140px var(--necta-section-pad);
	background: var(--necta-dark);
	color: #fff;
	overflow: hidden;
}

.necta-stories-v2__glow {
	position: absolute;
	bottom: -30%;
	left: 50%;
	transform: translateX(-50%);
	width: 1100px;
	height: 1100px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232, 80, 2, 0.1) 0%, transparent 60%);
	filter: blur(40px);
	pointer-events: none;
}

.necta-stories-v2__inner {
	position: relative;
	z-index: 2;
	max-width: 1380px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}

.necta-stories-v2__copy {
	min-width: 0;
}

.necta-stories-v2__cards {
	min-width: 0;
}

.necta-stories-v2__eyebrow { color: #8a8a8a; }

.necta-stories-v2__title {
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: -0.03em;
	margin: 14px 0 28px;
	max-width: 520px;
}


.necta-stories-v2__lead {
	font-size: 16px;
	color: #a7a7a7;
	line-height: 1.55;
	max-width: 460px;
	margin: 0 0 32px;
}

.necta-stories-v2__person {
	display: grid;
	grid-template-columns: 56px 1fr auto;
	gap: 18px;
	align-items: center;
	padding: 20px 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	cursor: pointer;
	transition: background 0.2s ease;
}

.necta-stories-v2__person:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.necta-stories-v2__person.is-active {
	background: rgba(232, 80, 2, 0.04);
}

.necta-stories-v2__avatar {
	width: 52px;
	height: 52px;
	border-radius: 999px;
	border: 2px solid rgba(255, 255, 255, 0.12);
	position: relative;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.necta-stories-v2__person.is-active .necta-stories-v2__avatar {
	border-color: var(--necta-primary);
	box-shadow: 0 0 0 4px rgba(232, 80, 2, 0.18);
}

.necta-stories-v2__avatar-play {
	display: none;
	position: absolute;
	bottom: -2px;
	right: -2px;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: var(--necta-primary);
	border: 2px solid var(--necta-dark);
	font-size: 8px;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.necta-stories-v2__person.is-active .necta-stories-v2__avatar-play {
	display: inline-flex;
}

.necta-stories-v2__person-text strong {
	display: block;
	font-size: 15px;
	font-weight: 500;
}

.necta-stories-v2__person-text .necta-mono {
	display: block;
	font-size: 10.5px;
	color: #8a8a8a;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-top: 4px;
}

.necta-stories-v2__person-text p {
	font-size: 13.5px;
	color: #a7a7a7;
	margin: 8px 0 0;
	line-height: 1.55;
	max-width: 440px;
}

.necta-stories-v2__arrow {
	color: #3a3a3a;
	font-size: 18px;
	transition: color 0.2s ease;
}

.necta-stories-v2__person.is-active .necta-stories-v2__arrow {
	color: var(--necta-primary);
}

.necta-stories-v2__cards {
	position: relative;
	height: 560px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.necta-story-card {
	position: absolute;
	left: 50%;
	width: 230px;
	height: 460px;
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 16px;
	cursor: pointer;
	transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, z-index 0s;
	transform: translateX(calc(-50% + var(--story-offset) * 1px)) translateY(calc(var(--story-lift) * 1px)) scale(0.94) rotate(calc(var(--story-rotate) * 1deg));
	z-index: var(--story-z);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

.necta-story-card--dark {
	background: linear-gradient(180deg, #161616 0%, #0a0a0a 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.necta-story-card--cream {
	background: linear-gradient(180deg, #f5e8d4 0%, #d9c3ab 100%);
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.necta-story-card.is-active {
	transform: translateX(-50%) translateY(-24px) scale(1.08) rotate(0deg);
	z-index: 10;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(232, 80, 2, 0.25);
}

.necta-story-card__poster {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 62%;
	opacity: 0.85;
}

.necta-story-card__poster-fade {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 62%;
	background: linear-gradient(180deg, transparent 0%, transparent 50%, #0a0a0a 100%);
}

.necta-story-card--cream .necta-story-card__poster-fade {
	background: linear-gradient(180deg, transparent 0%, transparent 50%, #d9c3ab 100%);
}

.necta-story-card__top {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.necta-story-card__badge,
.necta-story-card__duration {
	padding: 3px 8px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(6px);
	color: #fff;
	font-size: 8.5px;
	letter-spacing: 0.1em;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.necta-story-card__badge-dot {
	width: 5px;
	height: 5px;
	border-radius: 999px;
	background: #fff;
}

.necta-story-card__badge-dot.is-pulse {
	background: var(--necta-primary);
	animation: v2-pulse-ring 2.2s ease-in-out infinite;
}

.necta-story-card__play-wrap {
	position: absolute;
	top: 32%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}

.necta-story-card__play {
	display: none;
	width: 64px;
	height: 64px;
	border-radius: 999px;
	background: rgba(232, 80, 2, 0.95);
	border: 2px solid rgba(255, 255, 255, 0.4);
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 0 8px 24px rgba(232, 80, 2, 0.5);
}

.necta-story-card__play-ring {
	position: absolute;
	inset: -2px;
	border-radius: 999px;
	border: 2px solid rgba(232, 80, 2, 0.55);
	animation: v2-play-ripple 1.8s ease-out infinite;
}

.necta-story-card__play-idle {
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.25);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(8px);
}

.necta-story-card.is-active .necta-story-card__play {
	display: inline-flex;
}

.necta-story-card.is-active .necta-story-card__play-idle {
	display: none;
}

.necta-story-card__bottom {
	margin-top: auto;
	position: relative;
	z-index: 2;
}

.necta-story-card--dark .necta-story-card__tag { color: var(--necta-primary-light); }
.necta-story-card--cream .necta-story-card__tag { color: var(--necta-primary); }

.necta-story-card__bottom strong {
	display: block;
	font-size: 15px;
	font-weight: 500;
	margin-top: 8px;
}

.necta-story-card--dark .necta-story-card__bottom strong { color: #fff; }
.necta-story-card--cream .necta-story-card__bottom strong { color: #1a1612; }

.necta-story-card__bottom > span {
	font-size: 11px;
	color: #a7a7a7;
}

.necta-story-card--cream .necta-story-card__bottom > span { color: #5a3a20; }

.necta-story-card__controls {
	display: none;
	margin-top: 14px;
	padding: 8px 10px;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(8px);
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #fff;
}

.necta-story-card.is-active .necta-story-card__controls {
	display: flex;
}

.necta-story-card__progress {
	flex: 1;
	height: 3px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.2);
	overflow: hidden;
}

.necta-story-card__progress span {
	display: block;
	height: 100%;
	width: 38%;
	background: var(--necta-primary);
}

/* Missed sales V2 */
.necta-missed-v2 {
	background: var(--necta-cream);
	padding: 100px var(--necta-section-pad);
}

.necta-missed-v2__head {
	text-align: center;
	margin-bottom: 48px;
}

.necta-missed-v2__head .necta-mono { color: #8a6a4a; }

.necta-missed-v2__head h2 {
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.035em;
	max-width: 800px;
	margin: 14px auto;
}

.necta-missed-v2__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	max-width: 1380px;
	margin: 0 auto;
}

.necta-missed-v2__card {
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(26, 22, 18, 0.08);
	background: #fff;
	min-height: 420px;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.necta-missed-v2__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(26, 22, 18, 0.1);
}

.necta-missed-v2__visual {
	position: relative;
	height: 240px;
	overflow: hidden;
}

.necta-missed-v2__card--warm .necta-missed-v2__visual {
	background: radial-gradient(circle at 60% 30%, #f7d4ba 0%, #e85a35 50%, #7a1f02 100%);
}

.necta-missed-v2__card--beige .necta-missed-v2__visual {
	background: radial-gradient(circle at 30% 60%, #f5e0c2 0%, #b88a5a 50%, #5a3a20 100%);
}

.necta-missed-v2__card--cool .necta-missed-v2__visual {
	background: radial-gradient(circle at 50% 70%, #c5d5e8 0%, #5a7aa8 50%, #1a2a4a 100%);
}

.necta-missed-v2__visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 14px, rgba(0, 0, 0, 0.04) 14px 28px);
	mix-blend-mode: overlay;
}

.necta-missed-v2__tag {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	color: #1a1612;
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.necta-missed-v2__plugin-pill {
	position: absolute;
	bottom: 16px;
	left: 16px;
	padding: 6px 14px 6px 6px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
}

.necta-missed-v2__plugin-icon {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: linear-gradient(135deg, #f16001, #c10801);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.necta-missed-v2__body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.necta-missed-v2__body h3 {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 10px;
	letter-spacing: -0.025em;
}

.necta-missed-v2__link {
	margin-top: auto;
	padding-top: 18px;
	font-size: 13px;
	color: var(--necta-primary);
	font-weight: 500;
}

/* Pricing V2 — slot packs */
.necta-pricing-v2 {
	background: #fff;
	padding: 80px var(--necta-section-pad);
}

.necta-pricing-v2__head {
	text-align: center;
	margin-bottom: 48px;
}

.necta-pricing-v2__head .necta-mono { color: #8a6a4a; }

.necta-pricing-v2__head h2 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.035em;
	margin: 14px 0;
}

.necta-pricing-v2__lead {
	font-size: 16px;
	color: #5a4a3a;
	max-width: 540px;
	margin: 0 auto 28px;
	line-height: 1.55;
}

.necta-pricing-v2__period {
	display: inline-flex;
	padding: 4px;
	border-radius: 999px;
	background: #f6f2ec;
	border: 1px solid var(--necta-border);
}

.necta-pricing-v2__period button {
	padding: 8px 18px;
	border-radius: 999px;
	border: none;
	background: transparent;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	font-family: inherit;
	color: #5a4a3a;
}

.necta-pricing-v2__period button.is-active {
	background: var(--necta-ink);
	color: #fff;
}

.necta-pricing-v2__body {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.necta-pricing-v2__packs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	margin: 0 0 28px;
}

.necta-pricing-v2__pack {
	position: relative;
	padding: 24px 20px;
	border-radius: 18px;
	border: 1px solid var(--necta-border);
	background: #faf5ed;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 6px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.necta-pricing-v2__pack:hover {
	border-color: var(--necta-primary);
	box-shadow: 0 12px 32px rgba(232, 80, 2, 0.12);
	transform: translateY(-2px);
}

.necta-pricing-v2__pack.is-featured {
	background: linear-gradient(180deg, #131313 0%, #050505 100%);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.necta-pricing-v2__pack.is-featured::after {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232, 80, 2, 0.35) 0%, transparent 70%);
	pointer-events: none;
}

.necta-pricing-v2__pack-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	font-size: 9px;
	padding: 4px 8px;
	border-radius: 999px;
	background: var(--necta-primary);
	color: #fff;
}

.necta-pricing-v2__pack-slots {
	font-size: 40px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.04em;
}

.necta-pricing-v2__pack strong {
	font-size: 15px;
	font-weight: 500;
}

.necta-pricing-v2__pack em {
	font-size: 11px;
	color: var(--necta-muted);
	font-style: normal;
}

.necta-pricing-v2__pack.is-featured em { color: #a7a7a7; }

.necta-pricing-v2__pack-price {
	font-size: 22px;
	font-weight: 500;
	margin-top: 8px;
}

.necta-pricing-v2__pack-copy {
	font-size: 12px;
	color: #5a4a3a;
	line-height: 1.4;
	margin-top: auto;
}

.necta-pricing-v2__pack.is-featured .necta-pricing-v2__pack-copy { color: #a7a7a7; }

.necta-pricing-v2__staging {
	width: 100%;
	margin: 0;
	border-radius: 22px;
	overflow: hidden;
	background: linear-gradient(135deg, #faf5ed 0%, #f0e5d2 100%);
	border: 1px solid var(--necta-border);
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 28px;
	align-items: center;
	padding: 28px 32px;
	position: relative;
}

.necta-pricing-v2__staging-glow {
	position: absolute;
	bottom: -100px;
	right: -100px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(232, 80, 2, 0.18), transparent 60%);
	filter: blur(30px);
	pointer-events: none;
}

.necta-pricing-v2__staging-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--necta-ink);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.necta-pricing-v2__staging-free {
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--necta-primary);
	color: #fff;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 9px;
	letter-spacing: 0.1em;
	white-space: nowrap;
}

.necta-pricing-v2__staging-copy h3 {
	font-size: 22px;
	font-weight: 500;
	margin: 0 0 8px;
	line-height: 1.2;
}

.necta-pricing-v2__staging-copy p {
	font-size: 13px;
	color: #5a4a3a;
	line-height: 1.5;
	margin: 0;
	max-width: 600px;
}

.necta-pricing-v2__staging-cta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	position: relative;
	z-index: 2;
}

.necta-pricing-v2__staging-cta .necta-mono {
	font-size: 11px;
	color: #8a6a4a;
}

/* V2Faq — dark (home + shared with bundles) */
.necta-faq-dark {
	background: #0a0a0a;
	color: #f9f9f9;
	padding: 100px var(--necta-section-pad) 90px;
}

.necta-faq-dark__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 56px;
	max-width: 1280px;
	margin: 0 auto;
}

.necta-faq-dark__main h2 {
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.035em;
	margin: 14px 0 36px;
}

.necta-faq-dark__row {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 24px 28px;
}

.necta-faq-dark__row:last-of-type {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.necta-faq-dark__row[open] {
	background: rgba(255, 255, 255, 0.02);
}

.necta-faq-dark__row summary {
	cursor: pointer;
	font-size: 17px;
	font-weight: 500;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
}

.necta-faq-dark__row summary::-webkit-details-marker {
	display: none;
}

.necta-faq-dark__row summary::after {
	content: '+';
	width: 28px;
	height: 28px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 14px;
}

.necta-faq-dark__row[open] summary::after {
	content: '−';
	background: var(--necta-primary);
	border-color: transparent;
}

.necta-faq-dark__row p {
	font-size: 14px;
	color: #a7a7a7;
	line-height: 1.6;
	margin: 12px 0 0;
	max-width: 680px;
}

.necta-faq-dark__card {
	position: relative;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(180deg, #131313 0%, #060606 100%);
	padding: 40px 36px;
	align-self: flex-start;
	overflow: hidden;
}

.necta-faq-dark__card-glow {
	position: absolute;
	top: -80px;
	right: -80px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(232, 80, 2, 0.25), transparent 60%);
	filter: blur(30px);
	pointer-events: none;
}

.necta-faq-dark__card-inner {
	position: relative;
	z-index: 2;
}

.necta-faq-dark__card h3 {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.025em;
	margin: 14px 0;
}

.necta-faq-dark__card-inner > p {
	font-size: 14px;
	color: #a7a7a7;
	line-height: 1.55;
	margin: 0 0 24px;
}

.necta-faq-dark__btns {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.necta-faq-dark__btns .v2-btn {
	width: 100%;
	justify-content: center;
}

.necta-faq-dark__founder {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	align-items: center;
	gap: 12px;
}

.necta-faq-dark__avatar {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: linear-gradient(135deg, #d9c3ab, #8c7a64);
	flex-shrink: 0;
}

.necta-faq-dark__founder strong {
	display: block;
	font-size: 13px;
}

.necta-faq-dark__founder span {
	font-size: 11px;
	color: #a7a7a7;
}

@media (max-width: 900px) {
	.necta-faq-dark__grid {
		grid-template-columns: 1fr;
	}
}
