:root {
	--page: #0d0d10;
	--bg: #121216;
	--sidebar: #18181d;
	--element: #202026;
	--hover: #292930;
	--stroke: #2e2e36;
	--accent: #f481ad;
	--accent-soft: #a85877;
	--text: #e9e9ef;
	--sub: #848492;
	--green: #6ed28c;
	--red: #f06060;
	--gutter: max(24px, calc((100vw - 1100px) / 2));
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
	background: var(--page); color: var(--text);
	font: 13px/1.45 "Montserrat", system-ui, "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.accent { color: var(--accent); }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 1px solid var(--accent); outline-offset: 2px; }
.container { width: min(1100px, 100% - 48px); margin-inline: auto; }

.landing {
	position: relative; min-height: 100vh; min-height: 100svh;
	display: grid; place-items: center; padding: 24px; text-align: center;
}
.corner { position: absolute; top: 22px; right: 28px; display: flex; gap: 22px; }
.corner a { color: var(--sub); font-weight: 500; font-size: 13px; transition: color .12s; }
.corner a:hover { color: var(--text); }
.wordmark {
	font-size: clamp(64px, 13vw, 156px); font-weight: 800;
	letter-spacing: -.055em; line-height: .95;
	animation: rise .8s cubic-bezier(.2, .8, .2, 1) both;
}
.tagline {
	margin-top: 18px; font-size: clamp(18px, 2.6vw, 26px); font-weight: 600; letter-spacing: -.01em;
	animation: rise .8s .12s cubic-bezier(.2, .8, .2, 1) both;
}
.since { margin-top: 6px; color: var(--sub); font-size: 14px; animation: rise .8s .22s cubic-bezier(.2, .8, .2, 1) both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } }
.scroll-cue {
	position: absolute; left: 0; right: 0; bottom: 28px; width: max-content; margin: 0 auto;
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	color: var(--sub); font-size: 11px; letter-spacing: .12em;
	animation: rise .8s .5s backwards;
}
.scroll-cue i { width: 1px; height: 34px; background: var(--stroke); position: relative; overflow: hidden; }
.scroll-cue i::after {
	content: ""; position: absolute; left: 0; top: -14px; width: 1px; height: 14px; background: var(--accent);
	animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip { to { top: 34px; } }

h2 { font-size: 40px; font-weight: 800; letter-spacing: -.03em; line-height: 1.15; }

.card {
	background: var(--sidebar); border: 1px solid var(--stroke); border-radius: 14px;
	padding: 20px 22px 22px;
}
.card-head { position: relative; height: 30px; display: flex; align-items: center; }
.card-head .bar { position: absolute; left: 0; top: 6px; width: 3px; height: 18px; border-radius: 2px; background: var(--accent); }
.card-head h3 { margin-left: 14px; font-weight: 700; font-size: 17px; }
.card-head .tag { margin-left: auto; margin-right: 4px; color: var(--sub); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

.features {
	min-height: 100vh; min-height: 100svh; padding: 60px 0;
	display: flex; flex-direction: column; justify-content: center;
}
.features-head { margin-bottom: 36px; text-align: center; }
.features-head p { color: var(--sub); font-size: 16px; margin-top: 6px; }
.marquee {
	overflow: hidden; cursor: grab; touch-action: pan-y;
	-webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee.dragging { cursor: grabbing; user-select: none; }
.track { display: flex; gap: 18px; width: max-content; padding: 4px 0; will-change: transform; }
.feature {
	position: relative; flex: none; width: 370px;
	padding: 30px; border-radius: 14px;
	background: var(--sidebar); border: 1px solid var(--stroke);
	transition: border-color .2s;
}
.feature:hover { border-color: rgba(244, 129, 173, .45); }
.feature-ico {
	width: 52px; height: 52px; margin-bottom: 24px; border-radius: 12px;
	display: grid; place-items: center;
	background: rgba(244, 129, 173, .1); border: 1px solid rgba(244, 129, 173, .22);
}
.feature-ico svg { width: 25px; height: 25px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature .tag {
	position: absolute; top: 32px; right: 30px;
	color: var(--sub); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.feature h3 { font-size: 21px; font-weight: 700; letter-spacing: -.015em; margin-bottom: 8px; }
.feature p { color: var(--sub); font-size: 15px; line-height: 1.55; }

@media (prefers-reduced-motion: reduce) {
	.marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; cursor: auto; }
	.track { padding: 4px 24px; }
}

.pricing {
	min-height: 100vh; min-height: 100svh; width: min(1040px, 100% - 48px); margin: 0 auto;
	display: flex; flex-direction: column;
}
.pricing-body { margin: auto 0; padding: 60px 0 40px; }
.pricing-head { text-align: center; margin-bottom: 36px; }
.pricing-head p { color: var(--sub); font-size: 16px; margin-top: 6px; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan { display: flex; flex-direction: column; gap: 22px; }
.plan-price { padding: 4px 14px 0; display: flex; flex-direction: column; }
.plan-price span { font-size: 46px; font-weight: 800; letter-spacing: -.035em; line-height: 1.1; }
.plan-price small { color: var(--sub); font-size: 14px; margin-top: 4px; }
.btn {
	height: 44px; display: flex; align-items: center; justify-content: center;
	background: var(--element); border: 1px solid var(--stroke); border-radius: 10px;
	font-weight: 500; font-size: 15px;
	transition: background .12s, border-color .12s;
}
.btn:hover { background: var(--hover); border-color: var(--accent); }
.btn:active { background: var(--accent-soft); }
.btn.accent { background: var(--accent); border-color: var(--accent); color: #1a0d13; font-weight: 600; }
.btn.accent:hover { background: #f794ba; }
.included { margin-top: 24px; text-align: center; color: var(--sub); font-size: 14px; }

.page-foot {
	display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
	padding: 22px 0 28px;
	border-top: 1px solid var(--stroke); color: #5a5a66; font-size: 12px;
}
.page-foot > span:first-child { color: var(--text); font-weight: 700; }

.fade { will-change: opacity, transform; }

@media (max-width: 760px) {
	.corner { right: 50%; transform: translateX(50%); gap: 16px; }
	.feature { width: 82vw; max-width: 340px; padding: 24px; }
	h2 { font-size: 32px; }
	.plans { grid-template-columns: 1fr; }
	.pricing { width: calc(100% - 32px); }
}
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; }
}
