/* ===== CRIMSON CUT — Warm-Paper Viral Studio ===== */
@font-face {
	font-family: "Manrope";
	src: url("assets/fonts/manrope.woff2") format("woff2");
	font-weight: 200 800;
	font-display: swap;
	font-style: normal;
}

:root {
	--paper: #efeeea;
	--surface: #ffffff;
	--ink: #232825;
	--muted: #444a46;
	--crimson: #de103c;
	--jade: #36a379;
	--sun: #fbbf24;
	--hair: rgba(16, 16, 20, 0.1);
	--hair-light: rgba(255, 255, 255, 0.12);
	--container: 1240px;
	--r-lg: 24px;
	--r-xl: 40px;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: clip;
	scrollbar-gutter: stable;
}

body {
	font-family: "Manrope", system-ui, sans-serif;
	background: var(--paper);
	color: var(--ink);
	line-height: 1.5;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.8s var(--ease),
		transform 0.8s var(--ease);
}
.reveal.in {
	opacity: 1;
	transform: none;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 1.25rem 0;
	transition:
		background 0.4s var(--ease),
		box-shadow 0.4s var(--ease),
		backdrop-filter 0.4s;
}
.site-header.scrolled {
	background: rgba(239, 238, 234, 0.82);
	backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 var(--hair);
}
.nav {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 1.5rem;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
}
.wordmark {
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: -0.03em;
	color: var(--ink);
	text-decoration: none;
	white-space: nowrap;
}
.wordmark .dot {
	color: var(--crimson);
}
.nav-pill {
	display: none;
	justify-self: center;
	align-items: center;
	gap: 1.75rem;
	background: rgba(35, 40, 37, 0.06);
	border: 1px solid var(--hair);
	padding: 0.65rem 1.6rem;
	border-radius: 999px;
	backdrop-filter: blur(8px);
}
.nav-pill a {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ink);
	text-decoration: none;
	transition: opacity 0.2s;
}
.nav-pill a:hover {
	opacity: 0.55;
}
.plan-btn {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	background: rgba(35, 40, 37, 0.08);
	padding: 0.5rem 0.5rem 0.5rem 1.2rem;
	border-radius: 999px;
	text-decoration: none;
	color: var(--ink);
	font-weight: 700;
	font-size: 0.85rem;
	transition:
		background 0.3s,
		color 0.3s;
}
.plan-btn span:first-child {
	white-space: nowrap;
}
.plan-btn:hover {
	background: var(--ink);
	color: #fff;
}
.arrow-circle {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: var(--ink);
	flex-shrink: 0;
	transition: background 0.3s;
}
.arrow-circle svg {
	width: 11px;
	height: 11px;
	stroke: #fff;
	transition: stroke 0.3s;
}
.plan-btn:hover .arrow-circle {
	background: #fff;
}
.plan-btn:hover .arrow-circle svg {
	stroke: var(--ink);
}
.arrow-circle.light {
	background: rgba(255, 255, 255, 0.22);
}
.arrow-circle.light svg {
	stroke: #fff;
}

.hero {
	padding: 11rem 0 5rem;
}
.hero-inner {
	max-width: 70rem;
	margin-inline: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.avail {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid var(--hair);
	padding: 0.5rem 1rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}
.avail-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--jade);
	animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.4;
		transform: scale(0.8);
	}
}
.hero-title {
	margin-top: 2rem;
	font-weight: 700;
	font-size: clamp(2.4rem, 6.5vw, 4.5rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
	max-width: 18ch;
}
.palette-sticker {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--ink);
	padding: 0.2em 0.55em;
	border-radius: 0.45em;
	transform: rotate(2deg);
	box-shadow: 0 14px 30px -10px rgba(35, 40, 37, 0.5);
	vertical-align: middle;
	margin: 0 0.15em;
}
.palette-sticker .sq {
	width: 0.62em;
	height: 0.62em;
	border-radius: 0.16em;
	display: inline-block;
}
.sq-red {
	background: var(--crimson);
	transform: rotate(12deg);
}
.sq-jade {
	background: var(--jade);
	transform: rotate(-12deg);
}
.sq-sun {
	background: var(--sun);
	transform: rotate(6deg);
}
.hero-sub {
	margin-top: 1.6rem;
	font-size: clamp(1.05rem, 2.2vw, 1.35rem);
	color: var(--muted);
	max-width: 48ch;
	line-height: 1.6;
}
.hero-actions {
	margin-top: 2.6rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.6rem;
}
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	background: var(--crimson);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.02rem;
	padding: 1rem 1.5rem 1rem 1.9rem;
	border-radius: 999px;
	box-shadow: 0 16px 34px -12px rgba(222, 16, 60, 0.6);
	transition: transform 0.3s var(--ease);
}
.btn-primary:hover {
	transform: scale(1.05);
}

.vert-section {
	padding: 1.5rem 0 4rem;
}
.vert-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}
.vert-card {
	position: relative;
	width: 300px;
	max-width: 100%;
	aspect-ratio: 9 / 16;
	border-radius: var(--r-lg);
	overflow: hidden;
	background: var(--ink);
	box-shadow: 0 24px 50px -24px rgba(35, 40, 37, 0.5);
}
.vert-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
	transition:
		filter 0.7s var(--ease),
		transform 0.7s var(--ease);
}
.vert-card:hover img {
	filter: grayscale(0);
	transform: scale(1.04);
}
.vert-scrim {
	position: absolute;
	inset: auto 0 0 0;
	padding: 1.6rem;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
}
.vc-label {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.72rem;
	font-weight: 700;
}
.vc-stat {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}
.play-btn {
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 999px;
	background: var(--crimson);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}
.play-btn svg {
	width: 1rem;
	height: 1rem;
	fill: #fff;
}

.sec-head {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: start;
	padding-bottom: 2.5rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid var(--hair);
}
.kicker {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}
.kicker .rule {
	width: 2.8rem;
	height: 1px;
	background: var(--ink);
}
.kicker span:last-child {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
}
.sec-title {
	font-weight: 700;
	font-size: clamp(2rem, 5vw, 3.4rem);
	line-height: 1.04;
	letter-spacing: -0.03em;
	max-width: 18ch;
}
.index {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--muted);
}
.sec-head.dark {
	border-color: var(--hair-light);
}
.sec-head.dark .kicker .rule {
	background: #fff;
}
.sec-head.dark .index {
	color: rgba(255, 255, 255, 0.4);
}

.services {
	background: var(--surface);
	padding: 6rem 0;
}
.workflow-head .sec-title,
.workflow-head .index {
	max-width: none;
}
.workflow-board {
	position: relative;
	max-width: 58rem;
	margin-inline: auto;
	background: linear-gradient(180deg, #f4f1eb 0%, #efeeea 100%);
	border: 1px solid var(--hair);
	border-radius: 34px;
	padding: 2rem;
	box-shadow: 0 18px 40px -28px rgba(35, 40, 37, 0.22);
	overflow: hidden;
}
.workflow-line {
	position: absolute;
	top: 2.5rem;
	bottom: 2.5rem;
	left: 3.2rem;
	width: 1px;
	background: rgba(35, 40, 37, 0.12);
}
.workflow-step {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 4.5rem minmax(0, 42rem);
	gap: 1.4rem;
	padding: 1.25rem 0;
}
.workflow-step + .workflow-step {
	border-top: 1px solid rgba(35, 40, 37, 0.08);
}
.workflow-mark {
	width: 3rem;
	height: 3rem;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: var(--ink);
	color: #fff;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}
.workflow-copy h3 {
	font-size: clamp(1.45rem, 3vw, 1.95rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0.55rem;
}
.workflow-copy p {
	color: var(--muted);
	font-size: 1.02rem;
	line-height: 1.7;
	max-width: 43ch;
}
.workflow-deco {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 2;
}
.deco-square {
	position: absolute;
	top: -1.2rem;
	right: -1rem;
	width: 5.75rem;
	height: 3.2rem;
	border-radius: 1.2rem;
	background: #111111;
	box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.35);
	transition: transform 0.35s var(--ease);
}
.deco-dot {
	position: absolute;
	right: -1rem;
	bottom: -1rem;
	width: 5rem;
	height: 5rem;
	border-radius: 999px;
	background: var(--crimson);
	transition: transform 0.5s var(--ease);
}
.workflow-board:hover .deco-square {
	transform: translateX(-0.75rem);
}
.workflow-board:hover .deco-dot {
	transform: scale(1.06);
}

.results {
	background: var(--ink);
	color: #fff;
	padding: 6rem 0;
}
.results .sec-title {
	color: #fff;
}
.results .kicker span:last-child {
	color: #fff;
}
.stat-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
.stat-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--hair-light);
	border-radius: var(--r-lg);
	padding: 2.6rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
.stat-num {
	font-size: clamp(3rem, 8vw, 4.6rem);
	font-weight: 800;
	letter-spacing: -0.04em;
}
.stat-card p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.05rem;
	max-width: 19ch;
}
.stat-wide {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--hair-light);
	border-radius: var(--r-lg);
	padding: 2.6rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.sw-text h3 {
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0.7rem;
}
.sw-text p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.04rem;
	line-height: 1.7;
	max-width: 34ch;
}
.sw-img img {
	width: 100%;
	border-radius: 16px;
	opacity: 0.85;
	object-fit: cover;
	max-height: 220px;
}
.stat-creators {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--hair-light);
	border-radius: var(--r-lg);
	padding: 2.6rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.6rem;
}
.avatars {
	display: flex;
}
.avatars img {
	width: 3rem;
	height: 3rem;
	border-radius: 999px;
	object-fit: cover;
	border: 4px solid var(--paper);
	margin-left: -0.85rem;
}
.avatars img:first-child {
	margin-left: 0;
}
.avatars.dark img {
	border-color: var(--ink);
	width: 3.1rem;
	height: 3.1rem;
}
.stat-creators .avatars {
	margin-bottom: 1rem;
}
.stat-creators h3 {
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}
.stat-creators p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.1rem;
}

.discovery-section {
	background: var(--surface);
	padding: 6rem 0;
}
.discovery-shell {
	max-width: 74rem;
	margin-inline: auto;
}
.discovery-title {
	font-size: clamp(1.8rem, 4vw, 2.85rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
	max-width: 20ch;
	margin: 0 0 1.4rem;
	text-align: left;
}
.discovery-title span {
	color: var(--crimson);
}
.discovery-panel {
	position: relative;
	background: linear-gradient(180deg, #f4f1eb 0%, #efeeea 100%);
	border: 1px solid var(--hair);
	border-radius: 36px;
	padding: clamp(2rem, 4vw, 3.2rem);
	box-shadow: 0 18px 40px -28px rgba(35, 40, 37, 0.22);
	overflow: hidden;
}
.discovery-copy {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 1.15rem;
	color: var(--muted);
	font-size: clamp(1.02rem, 1.6vw, 1.14rem);
	line-height: 1.75;
	max-width: 56rem;
	text-align: left;
}
.discovery-copy strong {
	color: var(--ink);
	font-weight: 800;
}
.discovery-accent,
.discovery-strong {
	color: var(--crimson);
	font-weight: 800;
}
.discovery-deco {
	position: absolute;
	top: -0.95rem;
	right: -0.95rem;
	display: flex;
	gap: 0.9rem;
	transform: rotate(12deg);
	transition: transform 0.5s var(--ease);
	z-index: 2;
}
.discovery-deco span {
	width: 4.5rem;
	height: 4.5rem;
	background: #fff;
	border-radius: 1.1rem;
	box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.15);
}
.discovery-deco-dot {
	position: absolute;
	right: -0.85rem;
	bottom: -0.85rem;
	width: 5rem;
	height: 5rem;
	border-radius: 999px;
	background: var(--crimson);
	transition: transform 0.5s var(--ease);
	z-index: 2;
}
.discovery-panel:hover .discovery-deco {
	transform: rotate(0);
}
.discovery-panel:hover .discovery-deco-dot {
	transform: scale(1.12);
}

.faq {
	background: var(--ink);
	color: #fff;
	padding: 6rem 0;
}
.faq .sec-title {
	color: #fff;
}
.faq .kicker span:last-child {
	color: #fff;
}
.faq-list {
	max-width: 56rem;
	margin-inline: auto;
}
.faq-item {
	border-bottom: 1px solid var(--hair-light);
}
.faq-q {
	width: 100%;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 1.8rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	text-align: left;
	font-family: inherit;
}
.faq-q span:first-child {
	font-size: clamp(1.2rem, 3vw, 1.7rem);
	font-weight: 500;
	letter-spacing: -0.02em;
}
.faq-icon {
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 999px;
	border: 1px solid var(--hair-light);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	transition:
		background 0.3s,
		color 0.3s;
}
.faq-icon svg {
	width: 1rem;
	height: 1rem;
	stroke: #fff;
	transition: transform 0.35s var(--ease);
}
.faq-q:hover .faq-icon {
	background: #fff;
}
.faq-q:hover .faq-icon svg {
	stroke: var(--ink);
}
.faq-item.open .faq-icon {
	background: var(--crimson);
	border-color: var(--crimson);
}
.faq-item.open .faq-icon svg {
	stroke: #fff;
	transform: rotate(45deg);
}
.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s var(--ease);
}
.faq-a p {
	padding-bottom: 1.8rem;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.1rem;
	line-height: 1.6;
	max-width: 52ch;
}

.pricing {
	background: var(--surface);
	padding: 6rem 0;
}
.plan-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.6rem;
	max-width: 70rem;
	margin-inline: auto;
}
.plan-card {
	background: var(--paper);
	border-radius: 28px;
	padding: 2.4rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	position: relative;
}
.plan-card.highlight {
	background: var(--ink);
	color: #fff;
}
.best-badge {
	background: var(--crimson);
	color: #fff;
	font-size: 0.62rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	animation: pulse 2s ease-in-out infinite;
	white-space: nowrap;
}
.best-badge-static {
	animation: none;
}
.plan-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}
.plan-top h3 {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}
.plan-blurb {
	color: var(--muted);
	font-size: 1.02rem;
}
.plan-card.highlight .plan-blurb {
	color: rgba(255, 255, 255, 0.6);
}
.plan-feats {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-top: 1.4rem;
	border-top: 1px solid var(--hair);
}
.plan-card.highlight .plan-feats {
	border-color: var(--hair-light);
}
.plan-feats li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	color: var(--muted);
	font-size: 1rem;
}
.plan-card.highlight .plan-feats li {
	color: rgba(255, 255, 255, 0.7);
}
.check {
	width: 1.3rem;
	height: 1.3rem;
	flex-shrink: 0;
}
.check svg {
	width: 100%;
	height: 100%;
}
.check.jade svg {
	stroke: var(--jade);
}
.check.red svg {
	stroke: var(--crimson);
}
.plan-cta {
	margin-top: auto;
	text-align: center;
	text-decoration: none;
	font-weight: 700;
	padding: 1rem;
	border-radius: 999px;
	transition:
		background 0.3s,
		color 0.3s,
		transform 0.3s var(--ease);
}
.plan-cta.dark {
	background: var(--ink);
	color: #fff;
}
.plan-cta.dark:hover {
	background: var(--crimson);
}
.plan-cta.red {
	background: var(--crimson);
	color: #fff;
}
.plan-cta.red:hover {
	transform: scale(1.04);
}

.final-cta {
	background: var(--surface);
	padding: 5rem 0 6rem;
}
.cta-panel {
	background: var(--paper);
	border-radius: var(--r-xl);
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
}
.cta-text {
	padding: 3rem 2rem;
	position: relative;
	z-index: 2;
}
.cta-text h2 {
	font-size: clamp(2.2rem, 6vw, 4rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.05;
}
.cta-text p {
	margin-top: 1.4rem;
	color: var(--muted);
	font-size: 1.15rem;
	line-height: 1.6;
	max-width: 38ch;
}
.cta-actions {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.cta-img {
	position: relative;
	height: 280px;
}
.cta-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
	transition: filter 0.9s var(--ease);
}
.cta-img:hover img {
	filter: grayscale(0);
}
.cta-fade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, var(--paper), rgba(239, 238, 234, 0.15));
}

.site-footer {
	background: var(--ink);
	color: #fff;
	padding: 5rem 0 2.5rem;
}
.foot-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
}
.foot-brand {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: flex-start;
}
.foot-brand .wordmark {
	color: #fff;
	font-size: 1.8rem;
}
.foot-col h4 {
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin-bottom: 1.3rem;
}
.foot-col > a {
	display: block;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	margin-bottom: 0.8rem;
	transition: color 0.2s;
}
.foot-col > a:hover {
	color: #fff;
}
.foot-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.8rem;
}
.foot-nav a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.2s;
}
.foot-nav a:hover {
	color: #fff;
}
.foot-bottom {
	padding-top: 2rem;
	border-top: 1px solid var(--hair-light);
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.foot-bottom p {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.85rem;
}

@media (min-width: 560px) {
	.cta-actions {
		flex-direction: row;
	}
	.cta-actions a {
		width: auto;
	}
}
@media (min-width: 720px) {
	.vert-grid {
		gap: 2rem;
	}
	.vert-card.raised {
		transform: translateY(-2.2rem);
	}
	.stat-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.stat-wide {
		grid-column: span 2;
		flex-direction: row;
		align-items: center;
	}
	.sw-text,
	.sw-img {
		flex: 1;
	}
	.sw-img img {
		max-height: 240px;
	}
	.plan-grid-two {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.sec-head {
		grid-template-columns: auto 1fr auto;
		align-items: end;
		gap: 2.5rem;
	}
	.sec-title {
		justify-self: start;
	}
	.index {
		justify-self: end;
	}
	.foot-grid {
		grid-template-columns: 1.2fr 1fr 1fr;
		gap: 4rem;
	}
	.foot-bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}
@media (min-width: 920px) {
	.nav-pill {
		display: flex;
	}
	.hero {
		padding: 13rem 0 6rem;
	}
	.cta-panel {
		flex-direction: row;
		min-height: 520px;
		align-items: center;
	}
	.cta-text {
		width: 60%;
		padding: 4.5rem 4rem;
	}
	.cta-img {
		position: absolute;
		inset: 0 0 0 auto;
		width: 50%;
		height: 100%;
	}
	.cta-fade {
		background: linear-gradient(to right, var(--paper) 8%, transparent 60%);
	}
}
@media (max-width: 720px) {
	.nav {
		display: flex;
		justify-content: space-between;
	}
	.plan-btn {
		justify-self: auto;
		padding-left: 1rem;
	}
	.workflow-board {
		max-width: none;
		padding: 1.4rem;
		overflow: hidden;
	}
	.workflow-line {
		left: 2.8rem;
	}
	.workflow-step {
		grid-template-columns: 3.8rem minmax(0, 1fr);
		gap: 1rem;
	}
	.workflow-deco {
		right: -1.7rem;
		bottom: -1.7rem;
	}
	.deco-dot,
	.discovery-deco-dot {
		width: 3.6rem;
		height: 3.6rem;
	}
	.discovery-title {
		max-width: 14ch;
	}
	.discovery-panel {
		padding: 1.6rem;
		overflow: hidden;
	}
	.discovery-copy {
		font-size: 1rem;
	}
	.discovery-deco {
		top: -1.45rem;
		right: -1.1rem;
		gap: 0.7rem;
	}
	.discovery-deco span {
		width: 3.1rem;
		height: 3.1rem;
		border-radius: 0.9rem;
	}
	.discovery-deco-dot {
		right: -1.45rem;
		left: auto;
		bottom: -1.45rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none;
		scroll-behavior: auto;
	}
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
















