:root {
	--ink: #15131b;
	--muted: #696572;
	--line: #e8e5eb;
	--surface: #ffffff;
	--soft: #f7f6f8;
	--pink: #ff3f7f;
	--pink-dark: #e62768;
	--cyan: #25d9d0;
	--violet: #7657ff;
	--radius: 22px;
	--shadow: 0 24px 70px rgba(35, 24, 45, .12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--surface);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

body, button, a {
	font-synthesis: none;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
}

.container {
	width: min(1160px, calc(100% - 40px));
	margin-inline: auto;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 1000;
	padding: 10px 16px;
	background: var(--ink);
	color: white;
	border-radius: 10px;
	transform: translateY(-160%);
}

.skip-link:focus {
	transform: none;
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	height: 78px;
	border-bottom: 1px solid transparent;
	transition: background .25s, border-color .25s, box-shadow .25s;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, .93);
	border-color: var(--line);
	box-shadow: 0 10px 30px rgba(20, 15, 25, .05);
	backdrop-filter: blur(14px);
}

.nav-wrap {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 28px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	font-size: 21px;
	font-weight: 750;
	letter-spacing: -.5px;
}

.brand img {
	border-radius: 11px;
	box-shadow: 0 8px 18px rgba(255, 63, 127, .19);
	padding: 4px;
	height: 48px;
	width: 48px;
	background-color: #fff;
}

.brand strong {
	color: var(--pink);
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 27px;
	margin: 0 auto;
	color: #514c58;
	font-size: 14px;
	font-weight: 650;
}

.main-nav a {
	transition: color .2s;
}

.main-nav a:hover {
	color: var(--pink-dark);
}

.nav-actions {
	display: flex;
	gap: 10px;
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: white;
}

.nav-toggle span:not(.visually-hidden) {
	display: block;
	height: 2px;
	margin: 4px 0;
	background: var(--ink);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	padding: 0 21px;
	border: 1px solid transparent;
	border-radius: 13px;
	font-weight: 750;
	letter-spacing: -.1px;
	cursor: pointer;
	transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}

.button:hover {
	transform: translateY(-2px);
}

.button-small {
	min-height: 41px;
	padding-inline: 17px;
	font-size: 14px;
	border-radius: 11px;
}

.button-large {
	min-height: 54px;
	padding-inline: 24px;
}

.button-primary {
	color: white;
	background: linear-gradient(135deg, var(--pink), #ef2d69);
	box-shadow: 0 12px 28px rgba(239, 45, 105, .24);
}

.button-primary:hover {
	box-shadow: 0 15px 34px rgba(239, 45, 105, .33);
}

.button-ghost {
	border-color: #ddd9e0;
	background: rgba(255, 255, 255, .5);
}

.button-secondary {
	border-color: #dcd8df;
	background: white;
}

.button-dark {
	background: var(--ink);
	color: white;
	box-shadow: 0 14px 30px rgba(21, 19, 27, .2);
}

.button-plan {
	border-color: #dcd7df;
	background: white;
	color: var(--ink);
}

.button svg {
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 152px 0 100px;
	background: radial-gradient(circle at 72% 26%, rgba(255, 231, 240, .75), transparent 25%), linear-gradient(155deg, #fff 48%, #fbf8fc);
}

.hero::before {
	content: "";
	position: absolute;
	inset: 78px 0 auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, #eee9ef, transparent);
}

.hero-glow {
	position: absolute;
	border-radius: 999px;
	filter: blur(2px);
	pointer-events: none;
}

.hero-glow-one {
	width: 300px;
	height: 300px;
	right: -130px;
	top: 170px;
	background: rgba(37, 217, 208, .08);
}

.hero-glow-two {
	width: 220px;
	height: 220px;
	left: -120px;
	bottom: -70px;
	background: rgba(118, 87, 255, .08);
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: .88fr 1.12fr;
	align-items: center;
	gap: 58px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 19px;
	color: var(--pink-dark);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.25px;
	text-transform: uppercase;
}

.status-dot {
	width: 8px;
	height: 8px;
	background: var(--pink);
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(255, 63, 127, .11);
}

.hero h1 {
	max-width: 580px;
	margin: 0;
	font-size: clamp(46px, 5.5vw, 71px);
	line-height: .99;
	font-weight: 850;
}

.hero h1 span {
	background: linear-gradient(110deg, var(--pink), #ee315f 55%, #f57170);
	background-clip: text;
	color: transparent;
}

.hero-lead {
	max-width: 550px;
	margin: 27px 0 30px;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.65;
}

.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 21px;
	margin-top: 27px;
	color: #736d78;
	font-size: 12px;
	font-weight: 650;
}

.hero-trust span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.hero-trust svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: #18a991;
	stroke-width: 2.5;
}

.hero-demo {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(70, 50, 76, .12);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 30px 90px rgba(46, 31, 54, .18), 0 0 0 8px rgba(255, 255, 255, .55);
	cursor: pointer;
	outline: none;
	transform: perspective(1200px) rotateY(-1deg);
	transition: transform .25s, box-shadow .25s;
}

.hero-demo:hover, .hero-demo:focus-visible {
	transform: perspective(1200px) rotateY(0) translateY(-4px);
	box-shadow: 0 36px 100px rgba(46, 31, 54, .22), 0 0 0 8px rgba(255, 255, 255, .7);
}

.demo-topbar {
	height: 47px;
	display: flex;
	align-items: center;
	padding: 0 16px;
	border-bottom: 1px solid #ece9ee;
	background: #fcfbfc;
}

.window-dots {
	display: flex;
	gap: 6px;
}

.window-dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d9d5dc;
}

.window-dots span:first-child {
	background: #ff718a;
}

.window-dots span:nth-child(2) {
	background: #ffc45e;
}

.window-dots span:last-child {
	background: #53d6ab;
}

.demo-state {
	margin: 0 auto;
	padding: 5px 12px;
	border-radius: 999px;
	color: #7b747f;
	background: #f0edf1;
	font-size: 11px;
	font-weight: 750;
}

.show-after .demo-state {
	color: #09766e;
	background: #ddfaf6;
}

.demo-hint {
	color: #918a95;
	font-size: 10px;
}

.demo-screen {
	position: relative;
	aspect-ratio: 16 / 10;
	background: #f5f4f6;
}

.demo-screen img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity .45s, transform .45s;
}

.demo-screen [data-after-image] {
	opacity: 0;
	transform: scale(1.015);
}

.show-after .demo-screen [data-before-image] {
	opacity: 0;
	transform: scale(.985);
}

.show-after .demo-screen [data-after-image] {
	opacity: 1;
	transform: scale(1);
}

.comparison-controls {
	position: absolute;
	z-index: 3;
	left: 50%;
	bottom: 17px;
	display: flex;
	padding: 4px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 12px;
	background: rgba(20, 18, 26, .82);
	backdrop-filter: blur(10px);
	transform: translateX(-50%);
	box-shadow: 0 10px 24px rgba(20, 18, 26, .22);
}

.comparison-controls button {
	padding: 8px 14px;
	border: 0;
	border-radius: 9px;
	color: rgba(255, 255, 255, .7);
	background: transparent;
	font-size: 11px;
	font-weight: 750;
	cursor: pointer;
}

.comparison-controls button span {
	color: var(--pink);
}

.comparison-controls button.is-active {
	color: var(--ink);
	background: white;
}

.compat-strip {
	border-block: 1px solid var(--line);
	background: #fff;
}

.compat-content {
	min-height: 98px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	color: #77717c;
}

.compat-content p {
	margin: 0;
	font-size: 13px;
	font-weight: 650;
}

.compat-items {
	display: flex;
	align-items: center;
	gap: 16px;
}

.compat-badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 800;
}

.chrome-mark img {
	width: 25px;
	height: 25px;
	object-fit: contain;
}

.tiktok-mark img {
	width: 25px;
	height: 25px;
	object-fit: contain;
}

.compat-plus {
	color: #b3aeb6;
}

.compat-note {
	padding-left: 28px;
	border-left: 1px solid var(--line);
}

.section {
	padding: 115px 0;
}

.section-heading {
	max-width: 710px;
	margin-bottom: 68px;
}

.section-heading.centered {
	margin-inline: auto;
	text-align: center;
}

.section-heading h2 {
	margin: 0 0 17px;
	font-size: clamp(35px, 4vw, 50px);
	line-height: 1.1;
	letter-spacing: -2.4px;
}

.section-heading p {
	margin: 0;
	color: var(--muted);
	font-size: 17px;
}

.resources {
	background: #fff;
}

.flagship-feature {
	position: relative;
	display: grid;
	grid-template-columns: .82fr 1.18fr;
	align-items: center;
	gap: 58px;
	margin-bottom: 110px;
	padding: 56px;
	overflow: hidden;
	border: 1px solid rgba(255, 63, 127, .2);
	border-radius: 30px;
	color: white;
	background: radial-gradient(circle at 15% 10%, rgba(255, 63, 127, .22), transparent 34%), linear-gradient(135deg, #17141c, #28212d);
	box-shadow: 0 30px 80px rgba(36, 24, 42, .16);
}

.flagship-feature::before {
	content: "";
	position: absolute;
	width: 280px;
	height: 280px;
	right: -95px;
	top: -110px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 50%;
	box-shadow: 0 0 0 45px rgba(255, 255, 255, .025), 0 0 0 90px rgba(255, 255, 255, .018);
}

.flagship-copy, .flagship-demo {
	position: relative;
	z-index: 1;
}

.flagship-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	padding: 7px 12px;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 999px;
	color: #ffc5d8;
	background: rgba(255, 63, 127, .12);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .9px;
	text-transform: uppercase;
}

.flagship-kicker i {
	color: #ff5c91;
	font-size: 14px;
	font-style: normal;
}

.flagship-copy h3 {
	margin: 0 0 18px;
	font-size: clamp(38px, 4vw, 55px);
	line-height: 1;
	letter-spacing: -2.7px;
}

.flagship-copy>p {
	margin: 0 0 27px;
	color: #bdb6c1;
	font-size: 16px;
	line-height: 1.7;
}

.flagship-benefits {
	display: flex;
	gap: 24px;
	margin-bottom: 30px;
}

.flagship-benefits span {
	display: grid;
	color: #918a95;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .2px;
}

.flagship-benefits strong {
	color: white;
	font-size: 20px;
	letter-spacing: -.5px;
}

.flagship-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #ff6b9c;
	font-size: 13px;
	font-weight: 800;
}

.flagship-link span {
	transition: transform .2s;
}

.flagship-link:hover span {
	transform: translateX(4px);
}

.flagship-demo {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 18px;
	background: #f7f6f8;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.flagship-demo-bar {
	height: 48px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 0 15px;
	border-bottom: 1px solid #e7e3e9;
	color: #635c67;
	background: white;
	font-size: 10px;
	font-weight: 800;
}

.flagship-live-status {
	display: inline-flex;
	align-items: center;
	justify-self: end;
	gap: 6px;
	padding: 5px 9px;
	border-radius: 999px;
	color: #148c7d;
	background: #e0faf6;
}

.flagship-live-status i, .flagship-pulse {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #1cb5a3;
	box-shadow: 0 0 0 4px rgba(28, 181, 163, .12);
}

.flagship-demo-body {
	padding: 24px;
}

.flagship-product-card {
	display: grid;
	grid-template-columns: 62px 1fr auto;
	align-items: center;
	gap: 15px;
	padding: 15px;
	border: 2px solid rgba(255, 63, 127, .38);
	border-radius: 13px;
	color: var(--ink);
	background: white;
	box-shadow: 0 12px 30px rgba(45, 29, 50, .1), 0 0 0 4px rgba(255, 63, 127, .06);
}

.flagship-product-image {
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border-radius: 10px;
	color: var(--pink-dark);
	background: linear-gradient(145deg, #ffe0eb, #fff1f6);
}

.flagship-product-image span {
	font-size: 23px;
	font-weight: 900;
}

.flagship-product-info {
	display: grid;
	min-width: 0;
}

.flagship-product-info small {
	color: var(--pink-dark);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: .7px;
	text-transform: uppercase;
}

.flagship-product-info strong {
	overflow: hidden;
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.flagship-product-info>span {
	color: #99929c;
	font-size: 9px;
}

.flagship-pin-state {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 8px 10px;
	border-radius: 8px;
	color: white;
	background: var(--pink);
	font-size: 10px;
	font-weight: 800;
}

.flagship-pin-state svg {
	width: 13px;
	height: 13px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.flagship-automation-flow {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 26px 0;
	color: #9a939d;
	font-size: 9px;
	font-weight: 750;
}

.flagship-automation-flow span {
	display: grid;
	place-items: center;
	gap: 5px;
	min-width: 64px;
}

.flagship-automation-flow i {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 9px;
	color: #8a838d;
	background: white;
	box-shadow: 0 5px 14px rgba(38, 27, 42, .09);
	font-size: 13px;
	font-style: normal;
}

.flagship-automation-flow .is-done i {
	color: #168e7f;
	background: #def7f3;
}

.flagship-automation-flow .is-running i {
	color: white;
	background: var(--pink);
	box-shadow: 0 0 0 5px rgba(255, 63, 127, .1);
}

.flagship-automation-flow b {
	width: clamp(15px, 3vw, 40px);
	height: 1px;
	margin-bottom: 17px;
	background: linear-gradient(90deg, #d9d4db, var(--pink));
}

.flagship-demo-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 11px;
	border-radius: 9px;
	color: #77707a;
	background: #ebe9ed;
	font-size: 10px;
	font-weight: 700;
}

.feature-showcase {
	display: grid;
	gap: 98px;
}

.feature-row {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	align-items: center;
	gap: 80px;
}

.feature-row-reverse {
	grid-template-columns: 1.2fr .8fr;
}

.feature-row-reverse .feature-copy {
	order: 2;
}

.feature-copy {
	max-width: 440px;
}

.feature-number {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-bottom: 22px;
	border-radius: 11px;
	color: var(--pink-dark);
	background: #fff0f5;
	font-size: 12px;
	font-weight: 850;
}

.feature-copy h3 {
	margin: 0 0 16px;
	font-size: 31px;
	line-height: 1.15;
	letter-spacing: -1.2px;
}

.feature-copy>p {
	margin: 0 0 25px;
	color: var(--muted);
}

.check-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	font-weight: 650;
}

.check-list li {
	position: relative;
	padding-left: 29px;
}

.check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: -1px;
	display: grid;
	place-items: center;
	width: 19px;
	height: 19px;
	border-radius: 6px;
	color: white;
	background: #1cb9a8;
	font-size: 11px;
}

.feature-visual {
	position: relative;
	margin: 0;
	padding: 34px;
	overflow: hidden;
	border-radius: 27px;
}

.feature-visual::before {
	content: "";
	position: absolute;
	width: 180px;
	height: 180px;
	right: -50px;
	top: -50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .4);
}

.feature-visual img {
	position: relative;
	width: 100%;
	border: 1px solid rgba(30, 20, 35, .08);
	border-radius: 15px;
	box-shadow: 0 22px 55px rgba(35, 24, 44, .17);
}

.feature-visual figcaption {
	position: relative;
	margin-top: 14px;
	color: rgba(35, 27, 40, .6);
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .2px;
}

.accent-pink {
	background: linear-gradient(145deg, #ffe5ee, #fff5f8);
}

.accent-blue {
	background: linear-gradient(145deg, #dff8f8, #effbfb);
}

.accent-violet {
	background: linear-gradient(145deg, #eee9ff, #f7f5ff);
}

.workflow {
	background: var(--soft);
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.steps-grid article {
	position: relative;
	min-height: 260px;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: white;
}

.steps-grid article>span {
	position: absolute;
	right: 24px;
	top: 19px;
	color: #ded9e1;
	font-size: 40px;
	font-weight: 850;
}

.step-icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	margin-bottom: 32px;
	border-radius: 15px;
	color: var(--pink-dark);
	background: #fff0f5;
	font-size: 24px;
	font-weight: 800;
}

.steps-grid h3 {
	margin: 0 0 10px;
	font-size: 20px;
}

.steps-grid p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.pricing {
	position: relative;
	overflow: hidden;
	color: white;
	background: #19161f;
}

.pricing::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 18% 20%, rgba(255, 63, 127, .14), transparent 23%), radial-gradient(circle at 85% 80%, rgba(37, 217, 208, .08), transparent 24%);
	pointer-events: none;
}

.pricing .container {
	position: relative;
}

.light-heading p {
	color: #aaa4ae;
}

.plans-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 18px;
}

.plans-count-1 {
	max-width: 390px;
	margin-inline: auto;
	grid-template-columns: 1fr;
}

.plans-count-2 {
	max-width: 800px;
	margin-inline: auto;
	grid-template-columns: repeat(2, 1fr);
}

.plan-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 520px;
	padding: 34px 30px 30px;
	border: 1px solid #3a3540;
	border-radius: 22px;
	color: var(--ink);
	background: #fff;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.plan-featured {
	border: 2px solid var(--pink);
	transform: translateY(-12px);
	box-shadow: 0 28px 70px rgba(255, 63, 127, .18);
}

.plan-trial {
	border-color: #25d9d0;
	box-shadow: 0 24px 60px rgba(37, 217, 208, .14);
}

.popular-label {
	position: absolute;
	left: 50%;
	top: -15px;
	padding: 7px 18px;
	border-radius: 999px;
	color: white;
	background: var(--pink);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .7px;
	text-transform: uppercase;
	transform: translateX(-50%);
	white-space: nowrap;
}

.trial-label {
	position: absolute;
	right: 22px;
	top: 20px;
	padding: 6px 12px;
	border-radius: 999px;
	color: #156f68;
	background: #e5faf7;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .6px;
	text-transform: uppercase;
}

.plan-head h3 {
	margin: 0 0 8px;
	font-size: 25px;
	letter-spacing: -.8px;
}

.plan-head p {
	min-height: 46px;
	margin: 0 0 26px;
	color: var(--muted);
	font-size: 13px;
}

.old-price {
	min-height: 20px;
	color: #97919a;
	font-size: 12px;
	text-decoration: line-through;
}

.plan-price {
	display: flex;
	align-items: flex-start;
	gap: 4px;
	margin-top: 3px;
}

.plan-price small {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 800;
}

.plan-price strong {
	font-size: 44px;
	line-height: 1;
	letter-spacing: -2px;
}

.billing {
	margin: 5px 0 18px;
	color: #8a848d;
	font-size: 12px;
}

.account-limit {
	padding: 10px 12px;
	border-radius: 10px;
	color: #156f68;
	background: #e5faf7;
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

.plan-features {
	display: grid;
	gap: 11px;
	margin: 23px 0 28px;
	padding: 0;
	list-style: none;
	color: #504b53;
	font-size: 13px;
}

.plan-features li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
}

.plan-features span {
	color: #18a995;
	font-weight: 900;
}

.plan-card .button {
	width: 100%;
	margin-top: auto;
}

.pricing-footnote {
	margin: 34px 0 0;
	color: #8f8993;
	text-align: center;
	font-size: 11px;
}

.plans-empty {
	max-width: 620px;
	margin-inline: auto;
	padding: 50px;
	border: 1px solid #39343e;
	border-radius: 24px;
	text-align: center;
	background: #211d27;
}

.plans-empty>span {
	color: var(--pink);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.plans-empty h3 {
	margin: 12px 0;
	font-size: 28px;
}

.plans-empty p {
	margin: 0 0 25px;
	color: #aaa4ae;
}

.final-cta {
	padding: 85px 0;
	background: linear-gradient(110deg, #ff3f7f, #f1356d 58%, #fc645d);
	color: white;
}

.final-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.final-cta .eyebrow {
	color: rgba(255, 255, 255, .78);
}

.final-cta h2 {
	margin: 0;
	font-size: clamp(36px, 4vw, 53px);
	line-height: 1.08;
	letter-spacing: -2.4px;
}

.final-cta h2 {
	display: grid;
	gap: 7px;
}

.final-cta-line {
	display: flex;
	align-items: center;
	gap: 14px;
}

.final-cta-icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	width: clamp(34px, 3.2vw, 43px);
	height: clamp(34px, 3.2vw, 43px);
	border: 1px solid rgba(255, 255, 255, .48);
	border-radius: 13px;
	font-size: clamp(23px, 2.2vw, 30px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
	box-shadow: 0 9px 22px rgba(114, 15, 52, .18), inset 0 1px 0 rgba(255, 255, 255, .35);
}

.final-cta-icon-minus {
	color: white;
	background: rgba(39, 15, 29, .2);
}

.final-cta-icon-plus {
	color: var(--pink-dark);
	background: rgba(255, 255, 255, .94);
}

.final-cta-actions {
	display: grid;
	justify-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

.final-cta-actions small {
	color: rgba(255, 255, 255, .78);
	font-size: 10px;
}

.site-footer {
	padding: 55px 0;
	background: #111016;
	color: white;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 22px;
}

.footer-brand {
	margin-bottom: 10px;
}

.footer-grid p {
	margin: 0;
	color: #817b85;
	font-size: 12px;
}

.footer-links {
	display: flex;
	gap: 25px;
	color: #bbb5be;
	font-size: 12px;
	font-weight: 650;
}

.footer-links a:hover {
	color: white;
}

.copyright {
	grid-column: 1 / -1;
	padding-top: 22px;
	border-top: 1px solid #29262e;
}

.store-notice {
	position: fixed;
	left: 50%;
	bottom: 24px;
	z-index: 100;
	padding: 13px 20px;
	border-radius: 12px;
	color: white;
	background: var(--ink);
	box-shadow: var(--shadow);
	opacity: 0;
	transform: translate(-50%, 20px);
	pointer-events: none;
	transition: opacity .25s, transform .25s;
	font-size: 13px;
	font-weight: 650;
}

.store-notice.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

@media (max-width: 980px) {
	.main-nav {
		gap: 16px;
	}

	.nav-actions .button-primary {
		display: none;
	}

	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-copy {
		max-width: 720px;
		text-align: center;
		margin-inline: auto;
	}

	.hero h1, .hero-lead {
		margin-inline: auto;
	}

	.hero-actions, .hero-trust {
		justify-content: center;
	}

	.hero-demo {
		max-width: 780px;
		margin-inline: auto;
	}

	.flagship-feature {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.flagship-copy {
		max-width: 680px;
	}

	.feature-row, .feature-row-reverse {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.feature-row-reverse .feature-copy {
		order: 0;
	}

	.feature-copy {
		max-width: 650px;
	}

	.feature-visual {
		max-width: 760px;
	}

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

	.plan-featured {
		transform: none;
	}
}

@media (max-width: 760px) {
	.container {
		width: min(100% - 28px, 1160px);
	}

	.site-header {
		height: 68px;
		background: rgba(255, 255, 255, .95);
		border-color: var(--line);
	}

	.nav-wrap {
		justify-content: space-between;
	}

	.brand {
		font-size: 18px;
	}

	.brand img {
		width: 36px;
		height: 36px;
	}

	.nav-toggle {
		display: block;
		order: 3;
	}

	.main-nav {
		position: absolute;
		top: 61px;
		left: 14px;
		right: 14px;
		display: none;
		align-items: stretch;
		padding: 12px;
		border: 1px solid var(--line);
		border-radius: 16px;
		background: white;
		box-shadow: var(--shadow);
	}

	.main-nav.is-open {
		display: grid;
	}

	.main-nav a {
		padding: 10px;
	}

	.nav-actions {
		margin-left: auto;
	}

	.nav-actions .button {
		min-height: 38px;
		padding-inline: 13px;
	}

	.hero {
		padding: 118px 0 70px;
	}

	.hero-grid {
		gap: 43px;
	}

	.hero h1 {
		font-size: clamp(43px, 13vw, 60px);
		letter-spacing: -3px;
	}

	.hero-lead {
		font-size: 16px;
	}

	.hero-actions {
		display: grid;
	}

	.hero-actions .button {
		width: 100%;
	}

	.hero-trust {
		gap: 9px 15px;
	}

	.demo-hint {
		display: none;
	}

	.comparison-controls {
		bottom: 10px;
	}

	.comparison-controls button {
		padding: 7px 10px;
	}

	.compat-content {
		padding: 26px 0;
		flex-direction: column;
		gap: 14px;
	}

	.compat-note {
		padding: 14px 0 0;
		border-left: 0;
		border-top: 1px solid var(--line);
		text-align: center;
	}

	.section {
		padding: 80px 0;
	}

	.section-heading {
		margin-bottom: 48px;
	}

	.section-heading h2 {
		letter-spacing: -1.7px;
	}

	.feature-showcase {
		gap: 75px;
	}

	.flagship-feature {
		margin-bottom: 76px;
		padding: 28px 20px 20px;
		border-radius: 22px;
	}

	.flagship-benefits {
		gap: 18px;
	}

	.flagship-demo-body {
		padding: 14px;
	}

	.flagship-product-card {
		grid-template-columns: 52px 1fr;
	}

	.flagship-product-image {
		width: 52px;
		height: 52px;
	}

	.flagship-pin-state {
		grid-column: 1 / -1;
		justify-content: center;
	}

	.flagship-demo-bar>span:nth-child(2) {
		display: none;
	}

	.flagship-demo-bar {
		grid-template-columns: 1fr auto;
	}

	.feature-visual {
		padding: 18px;
		border-radius: 20px;
	}

	.steps-grid {
		grid-template-columns: 1fr;
	}

	.steps-grid article {
		min-height: 220px;
	}

	.plans-grid, .plans-count-2 {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin-inline: auto;
	}

	.plan-card {
		min-height: auto;
	}

	.plan-features {
		min-height: 0;
	}

	.final-cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.final-cta-actions {
		width: 100%;
	}

	.final-cta-actions .button {
		width: 100%;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-links {
		flex-wrap: wrap;
	}

	.copyright {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*, *::before, *::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
