/**
 * Styles for the NoNoise AI 2027 pages
 *
 * @copyright   2026, ON1
 */

/* !- Eyebrow */
.eyebrow {
	color: var(--green-500);
	font-size: 0.6875rem;
	font-weight: 700;
}

/* !- Passed videos */
#passed-video {
	background: var(--bg-950);
	margin-top: -46px;
	padding: calc(5rem + 46px) 0 5rem 0;
}

#passed-video .video-figure {
	margin-bottom: 1.75rem;
}

#passed-video h2 {
	font-size: 1.875rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.2;
	margin-bottom: 1rem;
	text-align: center;
}

#passed-video .btn {
	padding: 0.9375rem 1.875rem;
}

/* !- Product navigation */
#product-navigation.is-sticky {
	background: color-mix(in srgb, var(--bg-900) 75%, transparent);
	border-top: 0;
}

@media (max-width: 575.98px) {
	#product-navigation {
		background: var(--bg-900);
	}
}

#product-navigation .nav {
	align-items: center;
}

@media (max-width: 575.98px) {
	#product-navigation .nav-item .nav-link {
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
}

#product-navigation .nav-link small {
	font-size: var(--text-xs);
	position: relative;
	top: 0.125em;
}

#product-navigation .nav-link strong {
	color: var(--text-50);
	font-weight: 600;
}

#product-navigation .nav-link {
	color: var(--text-300);
	text-decoration: none;
}

#product-navigation .nav-link:hover {
	color: var(--text-50);
}


#product-navigation a.nav-link.active {
	color: var(--text-50);
}

#product-navigation a.nav-link.active small {
	border-bottom: 1px solid var(--text-50);
}

/* !- Before/afters */
.nn-compare,
.nn3-compare,
.ts-compare {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	width: 100%;
}

.nn-frame,
.nn3-frame,
.ts-frame {
	aspect-ratio: 3/2;
	background: #1e1e1e;
	border-radius: var(--border-radius);
	cursor: ew-resize;
	outline: none;
	overflow: hidden;
	position: relative;
	touch-action: none;
	user-select: none;
	width: 100%;
}

.nn-frame:focus-visible,
.nn3-frame:focus-visible,
.ts-frame:focus-visible {
	outline: 2px solid var(--green-500);
	outline-offset: 2px;
}

.nn-layer,
.nn3-layer,
.ts-layer {
	background-position: center;
	background-size: cover;
	height: 100%;
	inset: 0;
	position: absolute;
	transform: scale(1);
	transition: opacity 260ms cubic-bezier(.4, 0, .2, 1), transform 320ms cubic-bezier(.4, 0, .2, 1);
	width: 100%;
}

.nn-layer.nn-detail,
.nn3-layer.nn3-detail,
.ts-layer.ts-detail {
	opacity: 0;
}

.nn-compare.is-zoomed .nn-layer.nn-detail,
.nn3-compare.is-zoomed .nn3-layer.nn3-detail,
.ts-compare.is-zoomed .ts-layer.ts-detail {
	opacity: 1;
}

.nn-clip,
.nn3-clip,
.ts-clip {
	inset: 0;
	overflow: hidden;
	position: absolute;
	z-index: 2;
}

.nn-tag,
.nn3-tag,
.ts-tag {
	border-radius: var(--border-radius);
	font-size: var(--text-micro);
	font-weight: 700;
	letter-spacing: .08em;
	padding: 0.375rem 0.75rem;
	position: absolute;
	text-transform: uppercase;
	z-index: 3;
}

.nn-tag-before,
.nn3-tag-before,
.ts-tag-before {
	backdrop-filter: blur(8px);
	background: rgba(40, 40, 40, 0.6);
	color: var(--white);
	left: 1.25rem;
}

.nn-tag-after,
.nn3-tag-after,
.ts-tag-after {
	background: rgba(33, 206, 110, 0.8);
	color: var(--white);
	right: 1.25rem;
}

.nn-divider,
.nn3-divider,
.ts-divider {
	background: hsla(0, 0%, 0%, 0.9);
	bottom: 0;
	margin-left: -1px;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 2px;
	z-index: 4;
}

.nn-handle,
.nn3-handle,
.ts-handle {
	align-items: center;
	background-color: hsla(0, 0%, 100%, 0.9);
	border: 2px solid hsla(0, 0%, 0%, 0.9);
	border-radius: 50%;
	color: hsla(0, 0%, 0%, 0.9);
	display: flex;
	height: 52px;
	justify-content: center;
	left: 50%;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 52px;
}

.nn-handle svg,
.nn3-handle svg,
.ts-handle svg {
	height: 55%;
	width: 55%;
}

.nn-zoom-btn,
.nn3-zoom-btn,
.ts-zoom-btn {
	appearance: none;
	background: transparent;
	border: 1px solid var(--green-500);
	border-radius: var(--border-radius);
	color: var(--green-500);
	cursor: pointer;
	font-size: var(--text-xs);
	font-weight: 600;
	height: 2.5rem;
	padding: 0 1rem;
	transition: background 120ms cubic-bezier(.4, 0, .2, 1);
	white-space: nowrap;
}

.nn3-zoom-btn,
.ts-zoom-btn {
	justify-content: center;
	text-align: center;
	width: 7.5rem;
}

.nn-zoom-btn.is-active,
.nn3-zoom-btn.is-active,
.ts-zoom-btn.is-active {
	background: rgba(33, 206, 110, .16);
}

.nn-foot,
.nn3-foot,
.ts-foot {
	align-items: center;
	color: var(--text-400);
	display: flex;
	flex-wrap: wrap;
	font-size: var(--text-xs);
	gap: 1.25rem;
	justify-content: space-between;
}

/* !- NoNoise hero (nn) */
.nn-layer {
	transform-origin: 37% 52%;
}

.nn-compare.is-zoomed .nn-layer.nn-fit {
	opacity: 0;
	transform: scale(1.5);
}

.nn-compare.is-dragging .nn-layer {
	transition: none;
}

.nn-clip {
	clip-path: inset(0 55% 0 0);
}

.nn-tag {
	bottom: 1.25rem;
	margin: 0;
}

.nn-divider {
	left: 45%;
}

.nn-bar {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	justify-content: space-between;
}

.nn-seg {
	background: var(--bg-800);
	border: 1px solid var(--bg-600);
	border-radius: var(--border-radius);
	display: flex;
	padding: 0.25rem;
}

.nn-seg-btn {
	appearance: none;
	background: transparent;
	border: none;
	border-radius: var(--border-radius);
	color: var(--text-300);
	cursor: pointer;
	font-size: var(--text-xs);
	font-weight: 600;
	height: 2.5rem;
	padding: 0 1rem;
	transition: background 120ms cubic-bezier(.4, 0, .2, 1), color 120ms cubic-bezier(.4, 0, .2, 1);
	white-space: nowrap;
}

.nn-seg-btn.is-active {
	background: var(--green-500);
	color: var(--white);
}

/* !- NoNoise picker (nn3) */
.nn3-compare.is-zoomed .nn3-layer.nn3-fit {
	opacity: 0;
	transform: scale(1.4);
}

.nn3-clip {
	clip-path: inset(0 50% 0 0);
}

.nn3-tag {
	top: 1.25rem;
}

.nn3-divider {
	left: 50%;
}

.nn3-rail {
	align-items: stretch;
	display: flex;
	gap: 0.625rem;
}

.nn3-thumb {
	appearance: none;
	background-position: center;
	background-size: cover;
	border: 2px solid transparent;
	border-radius: 6px;
	cursor: pointer;
	flex: 1 1 0;
	height: 78px;
	opacity: .62;
	overflow: hidden;
	padding: 0;
	position: relative;
	transition: opacity 120ms cubic-bezier(.4, 0, .2, 1), border-color 120ms cubic-bezier(.4, 0, .2, 1);
}

.nn3-thumb:hover {
	opacity: .85;
}

.nn3-thumb.is-active {
	border-color: var(--green-500);
	opacity: 1;
}

.nn3-thumb-name {
	background: linear-gradient(to top, rgba(30, 30, 30, .86), rgba(30, 30, 30, 0));
	bottom: 0;
	color: var(--white);
	font-size: var(--text-mini);
	font-weight: 700;
	left: 0;
	letter-spacing: .08em;
	padding: 0.5rem 0.75rem;
	position: absolute;
	right: 0;
	text-align: left;
	text-transform: uppercase;
}

/* !- TackSharp (ts) */
.ts-compare.is-zoomed .ts-layer.ts-fit {
	opacity: 0;
	transform: scale(1.4);
}

.ts-clip {
	clip-path: inset(0 60% 0 0);
}

.ts-tag {
	top: 1.25rem;
}

.ts-divider {
	left: 40%;
}

.ts-rail {
	align-items: stretch;
	display: flex;
	gap: 0.625rem;
}

.ts-thumb {
	appearance: none;
	background-position: center;
	background-size: cover;
	border: 2px solid transparent;
	border-radius: var(--border-radius);
	cursor: pointer;
	flex: 1 1 0;
	height: 78px;
	opacity: .62;
	overflow: hidden;
	padding: 0;
	position: relative;
	transition: opacity 120ms cubic-bezier(.4, 0, .2, 1), border-color 120ms cubic-bezier(.4, 0, .2, 1);
}

.ts-thumb:hover {
	opacity: .85;
}

.ts-thumb.is-active {
	border-color: var(--green-500);
	opacity: 1;
}

.ts-thumb-name {
	background: linear-gradient(to top, rgba(30, 30, 30, .86), rgba(30, 30, 30, 0));
	bottom: 0;
	color: #fff;
	font-size: var(--text-mini);
	font-weight: 700;
	left: 0;
	letter-spacing: .08em;
	padding: 0.5rem 0.75rem;
	position: absolute;
	right: 0;
	text-align: left;
	text-transform: uppercase;
}

@media (max-width: 575.98px) {
	.nn-zoom-btn,
	.nn3-zoom-btn,
	.ts-zoom-btn {
		width: 100%;
	}

	.nn-foot .nn-caption,
	.nn3-foot .nn3-caption,
	.ts-foot .ts-caption {
		display: none;
	}

	.nn-bar {
		align-items: stretch;
		flex-direction: column;
	}

	.nn3-rail,
	.ts-rail {
		flex-wrap: wrap;
	}

	.nn3-zoom-btn,
	.ts-zoom-btn {
		height: 46px;
	}
}

/* !- Hero */
#hero {
	padding: 5rem 0;
}

#nonoise-ai-overview #hero {
	background:
		linear-gradient(rgba(20, 20, 20, 0.5), rgba(20, 20, 20, 0.5)),
		url(https://ononesoft.cachefly.net/images/products/2027/nonoise-ai/hero-bg@2x.jpg) center center no-repeat;
	background-size: cover, cover;
	color: var(--text-400);
	margin-top: -46px;
	padding-top: 7.875rem;
}

#passed-video + #hero {
	margin-top: 0;
	padding-top: 5rem;
}

#hero .eyebrow span {
	background: rgba(250, 183, 59, 0.16);
	color: #fab73b;
	border-radius: var(--border-radius);
	padding: 0.25rem 0.625rem;
}

#hero h1 {
	color: var(--white);
}

#hero .btn {
	padding: 0.9375rem 1.875rem;
}

#hero .hero-note {
	font-size: var(--text-xs);
}

#hero a {
	color: var(--green-500);
}

#hero a:hover {
	color: var(--green-100);
}

/* !- Sections */
.section-intro {
	margin-bottom: 2.25rem;
}

.section-copy {
	background: none;
	display: initial;
	flex-direction: initial;
	justify-content: initial;
	padding: 0;
}

/* !- Problem */
#problem {
	background: var(--bg-800);
	padding: 5rem 0;
}

/* !- What's New */
#whats-new-head {
	padding: 5rem 0 2.25rem 0;
}

.whats-new-section .row:last-of-type {
	margin-bottom: 5rem;
	padding-bottom: 5rem;
	position: relative;
}

.whats-new-section .row::after {
	border-bottom: 1px solid var(--bg-600);
	bottom: 0;
	content: '';
	left: calc(var(--bs-gutter-x) * .5);
	position: absolute;
	right: calc(var(--bs-gutter-x) * .5);
}

.whats-new-section:not(:has(+ .whats-new-section)) .row:not(.section-intro) {
	margin-bottom: 0;
}

.whats-new-section:not(:has(+ .whats-new-section)) .row::after {
	display: none;
}

.whats-new-section i.fa-regular {
	color: var(--green-500);
	display: block;
	margin-bottom: 1.25rem;
}

/* !- NoNoise 2027 video player */
#nn27-video .video-figure {
	background: var(--bg-800);
	border: 1px solid var(--bg-600);
	border-radius: 0.375rem;
	overflow: hidden;
	position: relative;
}

#nn27-video .video-figure::before {
	background: linear-gradient(-40deg, var(--green-500), var(--teal-500));
	content: '';
	height: 4px;
	inset: 0 0 auto;
	position: absolute;
	z-index: 2;
}

#nn27-video .video-caption-bar {
	align-items: center;
	background: var(--bg-700);
	border-top: 1px solid var(--bg-600);
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	padding: 0.75rem 1rem;
}

#nn27-video .video-caption-text {
	color: var(--text-400);
	font-size: 0.8125rem;
	line-height: 1.5;
	margin-bottom: 0;
}

#nn27-video .video-caption-text strong {
	color: var(--text-100);
}

#nn27-video .video-caption-icon {
	color: var(--text-400);
	flex-shrink: 0;
}

/* !- Pre-order banner */
#why-preorder {
	background: var(--bg-800);
	padding: 5rem 0;
}

#why-preorder .preorder-banner {
	background: var(--bg-900);
	border: 1px solid var(--bg-600);
	border-radius: var(--border-radius);
	color: var(--text-400);
	padding: 2.25rem;
}

#why-preorder .preorder-banner a.sign-in-link {
	color: var(--green-500);
	text-decoration: underline;
}

#why-preorder .preorder-banner a.sign-in-link:hover {
	color: #d1fadf;
}

#why-preorder .preorder-banner .btn {
	padding: 0.9375rem 1.875rem;
}

#why-preorder .preorder-banner-buy p {
	margin-bottom: 1.125rem;
}

#why-preorder .preorder-banner-buy .eyebrow span {
	background: rgba(250, 183, 59, 0.16);
	color: #fab73b;
	border-radius: var(--border-radius);
	padding: 0.25rem 0.625rem;
}

/* !- What's next */
#whats-next {
	padding: 5rem 0;
}

#whats-next .next-box {
	background: var(--bg-800);
	border: 1px solid var(--bg-600);
	border-radius: var(--border-radius);
	height: 100%;
	padding: 2.25rem 1.5rem;
}

#whats-next .next-box .badge {
	font-size: var(--text-sm);
	font-weight: 500;
	margin-bottom: 0.75rem;
}

#whats-next .next-box .next-title {
	color: var(--text-100);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.375rem;
}

#whats-next .next-box .next-copy {
	color: var(--text-300);
	font-size: var(--text-xs);
}

/* !- Reviews */
#reviews {
	background: #eaeaea;
	padding: 5rem 0;
}

#reviews .eyebrow {
	color: #1caf5e;
}

#reviews h2 {
	color: #161618;
	margin-bottom: 0;
}

#reviews .sub-head {
	color: #5e5e64;
}

#reviews .review-card {
	background: #f6f6f7;
	border: 1px solid #dcdcdc;
	border-radius: var(--border-radius);
	padding: 1.75rem 1.625rem;
}

#reviews .review-stars {
	display: flex;
	gap: 0.1875rem;
	margin-bottom: 0.875rem;
}

#reviews .star {
	background: var(--gold-500);
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	display: block;
	height: 1rem;
	width: 1rem;
}

#reviews .review-text {
	color: var(--text-300);
	border-left: 0;
	font-size: var(--text-sm);
	font-style: normal;
	margin: 0 0 1.125rem;
	padding: 0;
}

#reviews .review-author {
	color: var(--text-500);
	font-size: var(--text-xs);
	font-style: normal;
	font-weight: 600;
}

/* !- Buy */
#buy {
	background: var(--bg-900);
	color: var(--text-400);
	padding: 5rem 0;
}

#nonoise-ai-buy #buy {
	margin-top: -46px;
	padding: calc(5rem + 46px) 0 5rem 0;
}

#nonoise-ai-buy #passed-video + #buy {
	margin-top: 0;
	padding-top: 5rem;
}

.buy h1 {
	font-size: var(--text-3xl);
	color: var(--text-50);
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 0.5em;
}

.buy h2 {
	line-height: 1.3;
}

.buy .eyebrow {
	margin: 0 0 1rem 0;
}

.buy .eyebrow span {
	background: rgba(250, 183, 59, 0.16);
	color: #fab73b;
	border-radius: var(--border-radius);
	padding: 0.25rem 0.625rem;
}

.buy .discount-sign-in {
	color: var(--green-500);
}

.buy .discount-sign-in i {
	font-size: 1.5rem;
	vertical-align: middle;
}

.buy .discount-sign-in a {
	color: var(--green-500);
	text-decoration: underline;
}

.buy .discount-sign-in a:hover {
	color: #d1fadf;
}

.buy .buy-box {
	background: linear-gradient(-40deg, rgba(33, 206, 110, 0.1), rgba(10, 126, 250, 0.06));
	border: 1px solid rgba(33, 206, 110, 0.3);
	border-radius: var(--border-radius);
	height: 100%;
	overflow: hidden;
	padding: 2.25rem 1.75rem;
	position: relative;
	transition: border-color 0.2s ease;
}

.buy .buy-box::before {
	background: linear-gradient(-40deg, var(--green-500), var(--teal-500));
	content: "";
	height: 0.25rem;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.buy .buy-box:hover {
	border-color: rgba(33, 206, 110, 0.55);
}

.buy .buy-box.buy-box-alt {
	background: linear-gradient(-40deg, rgba(10, 126, 250, 0.1), rgba(146, 66, 148, 0.08));
	border: 1px solid rgba(10, 126, 250, 0.3);
}

.buy .buy-box.buy-box-alt::before {
	background: linear-gradient(-40deg, #0a7efa, #914fff);
}

.buy .buy-box.buy-box-alt:hover {
	border-color: rgba(10, 126, 250, 0.55);
}

.buy .buy-box .buy-box-name {
	color: var(--text-50);
	font-size: 1.5rem;
}

.buy .buy-box .buy-box-pill {
	margin-bottom: 1rem;
}

.buy .buy-box .buy-box-pill span {
	border: 1px solid var(--bg-600);
	border-radius: 50rem;
	color: var(--text-400);
	font-size: var(--text-micro);
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 0.25rem 0.5rem;
	text-transform: uppercase;
}

.buy .buy-box .buy-box-desc {
	color: var(--text-400);
	font-size: var(--text-mini);
	line-height: 1.5;
	margin-bottom: 1.25rem;
}

.buy .buy-box .buy-box-features {
	color: #d4d4d8;
	font-size: var(--text-xs);
	list-style: none;
	margin: 0 auto 0.75rem auto;
	padding-left: 0;
	text-align: start;
	width: 92%;
}

.buy .buy-box .buy-box-features li {
	align-items: baseline;
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.buy .buy-box .buy-box-features li::before {
	color: var(--green-500);
	content: '\f00c';
	flex-shrink: 0;
	font: var(--fa-font-solid);
}

.buy .buy-box.buy-box-alt .buy-box-features li::before {
	color: var(--teal-500);
}

.buy .buy-box .buy-box-price {
	color: var(--text-50);
	font-size: 1.875rem;
	font-weight: 800;
	margin-bottom: 0.875rem;
}

.buy .buy-box .buy-box-price .fa-spin {
	color: var(--text-100);
	font-size: 1rem;
}

.buy .buy-box .buy-box-price .sub-duration {
	font-size: var(--text-sm);
	font-weight: 400;
}

.buy .buy-box .buy-box-price .info-tooltip {
	color: var(--teal-500);
	font-size: 1rem;
	vertical-align: middle;
}

.buy .buy-box .buy-box-price del {
	color: var(--text-500);
	font-size: 1rem;
	font-weight: 400;
	margin-right: 0.5rem;
}

.buy .buy-box .btn {
	margin-bottom: 0;
	padding: 0.75rem 1.5rem;
}

.buy .buy-box .buy-box-note {
	color: var(--text-400);
	font-size: var(--text-mini);
	font-style: italic;
	line-height: 1.5;
	margin-bottom: 0;
	margin-top: 1rem;
}

.buy .buy-section-note {
	font-size: var(--text-xs);
	line-height: 1.5;
}

/* !- Subscription upgrades */
.buy .buy-box .buy-box-details {
	padding-top: 0.5rem;
}

.buy .buy-box:not(.buy-box-alt) .buy-box-details .buy-box-price {
	margin-bottom: 0;
	padding-bottom: 0.875rem;
}

.buy .buy-box.buy-box-alt .upgrade-details {
	padding-top: 0.125rem;
}

.buy .buy-box.buy-box-alt .upgrade-details .eyebrow {
	color: var(--teal-500);
	margin-bottom: 0;
}

.buy .buy-box.buy-box-alt .upgrade-details .buy-box-price {
	margin-bottom: 0;
}

.buy .buy-box.buy-box-alt .upgrade-details .buy-box-note {
	margin-top: 0;
}

.buy .buy-box.buy-box-alt .upgrade-alert {
	background: #46267b;
	border: 1px solid #5f33a7;
	border-radius: var(--border-radius);
	color: #e6d6ff;
	margin: 1.75rem 0;
	padding: 0.75rem;
	text-align: start;
}

.buy .buy-box.buy-box-alt .upgrade-alert label {
	font-size: var(--text-xs);
}

/* !- Upgrade failure */
.buy .buy-box .upgrade-error {
	color: var(--red-500);
	font-size: var(--text-xs);
	font-weight: 600;
	margin-top: 0.75rem;
}

/* !- Tooltips */
.tooltip.buy-box-tooltip {
	--bs-tooltip-max-width: 350px;
	--bs-tooltip-padding-x: 0.75rem;
	--bs-tooltip-padding-y: 0.5rem;
}

.tooltip.buy-box-tooltip .tooltip-inner {
	text-align: start;
}

/* !- Guarantee */
.guarantee-boxes .guarantee-icon {
	background: var(--green-transparent);
}

.guarantee-boxes .guarantee-icon i.fa-solid {
	color: var(--green);
}

/* !- FAQs */
#faqs .faq-q::before {
	background: var(--green-transparent);
	color: var(--green);
}

/* !- Resources */
#resources .eyebrow {
	color: var(--green-500);
}

/* !- Buy callout */
#buy-callout {
	background: var(--bg-800);
	padding: 5rem 0;
}

#buy-callout h2 {
	margin-bottom: 1.75rem;
}

#buy-callout .btn {
	padding: 0.9375rem 1.875rem;
}

/* !- Feature list page */
#nonoise-ai-features #features-hero {
	background: var(--bg-900);
	margin-top: -46px;
	padding: calc(5rem + 46px) 0 5rem 0;
}

#nonoise-ai-features #features-hero img {
	margin-right: 1rem;
	margin-top: -0.25rem;
}

#nonoise-ai-features #features-hero h1 {
	line-height: 1.2;
	margin-bottom: 0;
}

#nonoise-ai-features #features-hero h1 span {
	display: block;
	font-size: 1.5rem;
	font-weight: 400;
}

#nonoise-ai-features #nn27-feature-list {
	background: var(--bg-800);
	color: var(--text-300);
	padding: 5rem 0;
}

#nonoise-ai-features #nn27-feature-list .eyebrow {
	color: var(--green-600);
}

#nonoise-ai-features #nn27-feature-list h2,
#nonoise-ai-features #nn27-feature-list h3,
#nonoise-ai-features #nn27-feature-list strong {
	color: var(--text-50);
}

#nonoise-ai-features #nn27-feature-list h3 {
	font-size: 1.5rem;
	margin-bottom: 1.25rem;
}

#nonoise-ai-features #nn27-feature-list .new-badge {
	background: var(--green-600);
	border-radius: var(--border-radius);
}

#nonoise-ai-features #nn27-feature-list li {
	font-size: var(--text-sm);
	line-height: 1.5;
	margin-bottom: 1rem;
}

#nonoise-ai-features #nn27-feature-list li:last-child {
	margin-bottom: 0;
}

#nonoise-ai-features #nn27-feature-list #features-2027 {
	background: var(--bg-900);
	border: 1px solid var(--green-600);
	border-left: 4px solid var(--green-600);
	border-radius: var(--border-radius);
	margin-bottom: 2.25rem;
	padding: 1.75rem;
}

#nonoise-ai-features #nn27-feature-list #features-2027 .major-improvements {
	margin-bottom: 2.25rem;
}

#nonoise-ai-features #nn27-feature-list #features-2027 .list-unstyled {
	margin-bottom: 0;
}

#nonoise-ai-features #nn27-feature-list #features-2027 .list-unstyled li {
	align-items: baseline;
	border-bottom: 1px solid var(--bg-600);
	display: flex;
	gap: 0.5rem;
	padding-bottom: 1rem;
}

#nonoise-ai-features #nn27-feature-list #features-2027 .list-unstyled li:last-child {
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

#nonoise-ai-features #nn27-feature-list #features-2027 .list-unstyled li+li {
	margin-top: 0.5rem;
}

#nonoise-ai-features #nn27-feature-list #features-2027 .new-badge {
	flex-shrink: 0;
}

#nonoise-ai-features #nn27-feature-list #features-other ul {
	margin-bottom: 2.25rem;
}

#nonoise-ai-features #nn27-feature-list #features-other ul:last-child {
	margin-bottom: 0;
}

/* !- Trial download */
#nonoise-ai-download #trial-download {
	padding: 5rem;
}
