/* RoseFlow homepage layout */

:root {
	--rf-gold: #efba60;
	--rf-base: #0a0118;
	--rf-surface: #1a0f2e;
	--rf-light: #f5f0ff;
	--rf-muted: rgba(245, 240, 255, 0.72);
	--rf-glass: rgba(255, 255, 255, 0.06);
	--rf-glass-border: rgba(255, 255, 255, 0.12);
	--rf-radius: 16px;
	--rf-radius-lg: 24px;
	--rf-container: min(1200px, 92vw);
	--rf-header-h: 64px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.rf-container {
	width: var(--rf-container);
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 2rem);
}

.rf-section {
	padding-block: clamp(3rem, 8vw, 6rem);
	position: relative;
}

.rf-section__eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rf-gold);
	margin-bottom: 0.75rem;
}

.rf-section__title {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 1rem;
	color: var(--rf-light);
}

.rf-section__lead {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--rf-muted);
	max-width: 52ch;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.rf-section--center {
	text-align: center;
}

.rf-glass {
	background: var(--rf-glass);
	border: 1px solid var(--rf-glass-border);
	border-radius: var(--rf-radius);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.rf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 44px;
	padding: 0.75rem 1.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.rf-btn:hover {
	text-decoration: none;
	transform: translateY(-1px);
}

.rf-btn--primary {
	background: var(--rf-gold);
	color: var(--rf-base);
	box-shadow: 0 8px 32px rgba(239, 186, 96, 0.35);
}

.rf-btn--primary:hover {
	background: #f5d48a;
	color: var(--rf-base);
}

.rf-btn--swap {
	position: relative;
	min-width: 11.5rem;
	overflow: hidden;
}

.rf-btn--swap .rf-btn__label {
	display: block;
	transition: transform 0.28s ease, opacity 0.28s ease;
}

.rf-btn--swap .rf-btn__label--hover {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	opacity: 0;
	transform: translateY(100%);
}

.rf-btn--swap:hover .rf-btn__label--default,
.rf-btn--swap:focus-visible .rf-btn__label--default {
	opacity: 0;
	transform: translateY(-100%);
}

.rf-btn--swap:hover .rf-btn__label--hover,
.rf-btn--swap:focus-visible .rf-btn__label--hover {
	opacity: 1;
	transform: translateY(0);
}

.rf-btn--ghost {
	background: transparent;
	color: var(--rf-light);
	border: 1px solid var(--rf-glass-border);
}

.rf-btn--ghost:hover {
	border-color: var(--rf-gold);
	color: var(--rf-gold);
}

/* Header */
.rf-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(10, 1, 24, 0.94);
	border-bottom: 1px solid var(--rf-glass-border);
}

.rf-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--rf-header-h);
	gap: 1rem;
}

.rf-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--rf-light);
	font-weight: 700;
	font-size: 1.25rem;
	text-decoration: none;
}

.rf-logo:hover {
	text-decoration: none;
	color: var(--rf-gold);
}

.rf-logo__mark {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--rf-gold), #c98e2e);
	box-shadow: 0 4px 16px rgba(239, 186, 96, 0.4);
}

.rf-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	background: var(--rf-glass);
	border: 1px solid var(--rf-glass-border);
	border-radius: 12px;
	cursor: pointer;
}

.rf-nav-toggle__bar {
	display: block;
	width: 20px;
	height: 2px;
	margin-inline: auto;
	background: var(--rf-light);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.rf-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.rf-nav__list {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rf-nav__list a {
	color: var(--rf-muted);
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
}

.rf-nav__list a:hover {
	color: var(--rf-gold);
	text-decoration: none;
}

.rf-header.is-open .rf-nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.rf-header.is-open .rf-nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.rf-header.is-open .rf-nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.rf-hero {
	padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(2rem, 5vw, 3rem);
	overflow: hidden;
	position: relative;
}

.rf-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 55% at 85% 15%, rgba(37, 211, 102, 0.1), transparent 55%),
		radial-gradient(ellipse 80% 50% at 15% 85%, rgba(239, 186, 96, 0.14), transparent 55%),
		radial-gradient(ellipse 60% 40% at 50% 50%, rgba(80, 40, 140, 0.18), transparent 50%);
	pointer-events: none;
}

.rf-hero__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	grid-template-areas:
		"controls phone"
		"title phone"
		"actions phone";
	gap: clamp(1rem, 3vw, 2rem) clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	position: relative;
	z-index: 1;
}

.rf-hero-controls {
	grid-area: controls;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	max-width: 34rem;
}

.rf-hero-controls__top {
	display: flex;
	align-items: stretch;
	gap: 0.75rem;
}

.rf-hero-slides {
	grid-area: title;
	position: relative;
	min-height: clamp(220px, 28vw, 280px);
	max-width: 34rem;
}

.rf-hero-stage {
	grid-area: phone;
}

.rf-hero__actions {
	grid-area: actions;
	max-width: 34rem;
}

/* Minimal model tabs */
.rf-hero-tabs {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.rf-hero-tab {
	min-height: 32px;
	padding: 0.35rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	font-family: inherit;
	color: var(--rf-muted);
	background: transparent;
	border: 1px solid var(--rf-glass-border);
	border-radius: 999px;
	cursor: pointer;
	transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.rf-hero-tab:hover {
	color: var(--rf-light);
	border-color: rgba(239, 186, 96, 0.35);
}

.rf-hero-tab.is-active {
	color: var(--rf-base);
	background: var(--rf-gold);
	border-color: var(--rf-gold);
}

.rf-hero-progress {
	flex: 0 0 4px;
	width: 4px;
	align-self: stretch;
}

.rf-hero-progress__track {
	position: relative;
	width: 100%;
	min-height: 2.75rem;
	height: 100%;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 999px;
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.rf-hero-progress__fill {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(180deg, #25d366 0%, var(--rf-gold) 100%);
	border-radius: 999px;
	box-shadow: 0 0 12px rgba(37, 211, 102, 0.35);
	transform-origin: bottom center;
	will-change: height;
}

.rf-hero-progress__fill.is-animating {
	animation: rf-hero-progress-run var(--rf-rotate-ms, 13s) linear forwards;
}

@keyframes rf-hero-progress-run {
	from {
		height: 0%;
	}

	to {
		height: 100%;
	}
}

.rf-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateY(20px) scale(0.98);
	filter: blur(4px);
	pointer-events: none;
	transition:
		opacity 0.5s ease,
		transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
		filter 0.45s ease;
}

.rf-hero-slide.is-active,
.rf-hero-slide.is-entering {
	position: relative;
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
	pointer-events: auto;
}

.rf-hero.is-switching .rf-hero-progress__track {
	box-shadow:
		inset 0 0 0 1px rgba(239, 186, 96, 0.25),
		0 0 14px rgba(37, 211, 102, 0.2);
}

.rf-hero.is-switching .rf-hero-progress__fill.is-animating {
	opacity: 0.7;
}

.rf-hero-features {
	list-style: none;
	margin: 0;
	padding: 0.85rem 1rem 0.85rem 1.15rem;
	max-width: 26rem;
	border: 1px solid rgba(239, 186, 96, 0.22);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 12px 32px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.rf-hero-features li {
	position: relative;
	padding: 0.28rem 0 0.28rem 0.15rem;
	font-size: clamp(0.875rem, 1.8vw, 0.95rem);
	line-height: 1.45;
	color: rgba(245, 240, 255, 0.82);
}

.rf-hero-features li::before {
	content: "";
	position: absolute;
	left: -0.85rem;
	top: 0.72em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--rf-gold), #25d366);
	box-shadow: 0 0 8px rgba(239, 186, 96, 0.45);
}

.rf-hero-features__highlight {
	margin-top: 0.35rem;
	padding-top: 0.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-weight: 700;
	color: var(--rf-gold);
}

.rf-hero-features__highlight::before {
	background: var(--rf-gold);
	box-shadow: 0 0 10px rgba(239, 186, 96, 0.55);
}

.rf-hero__sub {
	display: none;
}

.rf-hero h1 {
	font-size: clamp(2rem, 5.2vw, 3.35rem);
	font-weight: 800;
	line-height: 1.08;
	margin: 0 0 1rem;
	color: var(--rf-light);
	letter-spacing: -0.02em;
}

.rf-hero h1 span {
	display: block;
	color: var(--rf-gold);
	margin-top: 0.15em;
}

.rf-hero__sub {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--rf-muted);
	margin: 0;
	line-height: 1.65;
	max-width: 38ch;
}

.rf-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

/* Trust */
.rf-trust {
	padding-block: 0 2rem;
}

.rf-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.rf-trust__item {
	padding: 1rem 1.25rem;
	text-align: center;
}

.rf-trust__item strong {
	display: block;
	font-size: 0.9375rem;
	color: var(--rf-light);
	margin-bottom: 0.25rem;
}

.rf-trust__item span {
	font-size: 0.8125rem;
	color: var(--rf-muted);
}

/* Business models */
.rf-models__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.rf-model-card {
	padding: 1.75rem;
	cursor: pointer;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	text-align: left;
}

.rf-model-card:hover,
.rf-model-card.is-active {
	transform: translateY(-4px);
	border-color: rgba(239, 186, 96, 0.45);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.rf-model-card__icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	background: rgba(239, 186, 96, 0.15);
	border-radius: 12px;
	margin-bottom: 1rem;
}

.rf-model-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
	color: var(--rf-light);
}

.rf-model-card p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--rf-muted);
	line-height: 1.5;
}

/* How it works */
.rf-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
	counter-reset: rf-step;
}

.rf-step {
	padding: 1.5rem;
	position: relative;
	counter-increment: rf-step;
}

.rf-step::before {
	content: counter(rf-step);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-bottom: 1rem;
	font-weight: 700;
	font-size: 0.875rem;
	color: var(--rf-base);
	background: var(--rf-gold);
	border-radius: 50%;
}

.rf-step h3 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	color: var(--rf-light);
}

.rf-step p {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--rf-muted);
}

/* Use cases */
.rf-demos__scroll {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.rf-demo-card {
	padding: 1.5rem;
	overflow: hidden;
}

.rf-demo-card__label {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--rf-gold);
	margin-bottom: 0.5rem;
}

.rf-demo-card h3 {
	margin: 0 0 1rem;
	font-size: 1.0625rem;
}

.rf-demo-card__mini {
	transform: scale(0.85);
	transform-origin: top center;
	margin: 0 auto;
}

/* Dashboard preview */
.rf-dashboard {
	padding-block: clamp(3rem, 8vw, 6rem);
}

.rf-dashboard__frame {
	border-radius: var(--rf-radius-lg);
	overflow: hidden;
	border: 1px solid var(--rf-glass-border);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.rf-dashboard__chrome {
	display: flex;
	gap: 6px;
	padding: 0.75rem 1rem;
	background: rgba(0, 0, 0, 0.35);
	border-bottom: 1px solid var(--rf-glass-border);
}

.rf-dashboard__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--rf-glass-border);
}

.rf-dashboard__dot:first-child { background: #ff5f57; }
.rf-dashboard__dot:nth-child(2) { background: #febc2e; }
.rf-dashboard__dot:nth-child(3) { background: #28c840; }

.rf-dashboard__body {
	display: grid;
	grid-template-columns: 200px 1fr;
	min-height: 280px;
	background: linear-gradient(180deg, #120a22, #0a0118);
}

.rf-dashboard__sidebar {
	padding: 1rem;
	border-right: 1px solid var(--rf-glass-border);
}

.rf-dashboard__nav-item {
	display: block;
	padding: 0.5rem 0.75rem;
	margin-bottom: 0.35rem;
	font-size: 0.8125rem;
	color: var(--rf-muted);
	border-radius: 8px;
}

.rf-dashboard__nav-item.is-active {
	background: rgba(239, 186, 96, 0.15);
	color: var(--rf-gold);
}

.rf-dashboard__main {
	padding: 1.5rem;
}

.rf-dashboard__ai-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1.25rem;
	margin-bottom: 1rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--rf-base);
	background: var(--rf-gold);
	border-radius: 999px;
	border: none;
}

.rf-dashboard__chat-preview {
	padding: 1rem;
	background: var(--rf-glass);
	border-radius: 12px;
	font-size: 0.8125rem;
	color: var(--rf-muted);
	line-height: 1.6;
}

.rf-dashboard__note {
	text-align: center;
	margin-top: 1.25rem;
	font-size: 0.875rem;
	color: var(--rf-muted);
}

/* Features */
.rf-features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.rf-feature {
	padding: 1.5rem;
}

.rf-feature__icon {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
}

.rf-feature h3 {
	margin: 0 0 0.35rem;
	font-size: 1rem;
}

.rf-feature p {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--rf-muted);
}

/* Pricing */
.rf-pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	align-items: stretch;
}

.rf-price-card {
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.rf-price-card--featured {
	border-color: rgba(239, 186, 96, 0.5);
	box-shadow: 0 0 0 1px rgba(239, 186, 96, 0.25), 0 20px 60px rgba(239, 186, 96, 0.12);
}

.rf-price-card__name {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--rf-gold);
	margin-bottom: 0.5rem;
}

.rf-price-card__amount {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--rf-light);
	margin-bottom: 0.25rem;
}

.rf-price-card__amount small {
	font-size: 1rem;
	font-weight: 500;
	color: var(--rf-muted);
}

.rf-price-card ul {
	list-style: none;
	margin: 1.25rem 0 1.5rem;
	padding: 0;
	text-align: left;
	flex: 1;
}

.rf-price-card li {
	font-size: 0.875rem;
	color: var(--rf-muted);
	padding: 0.35rem 0;
	padding-left: 1.25rem;
	position: relative;
}

.rf-price-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--rf-gold);
	font-weight: 700;
}

/* FAQ */
.rf-faq__list {
	max-width: 720px;
	margin-inline: auto;
}

.rf-faq details {
	margin-bottom: 0.75rem;
	padding: 1rem 1.25rem;
	background: var(--rf-glass);
	border: 1px solid var(--rf-glass-border);
	border-radius: var(--rf-radius);
}

.rf-faq summary {
	font-weight: 600;
	cursor: pointer;
	color: var(--rf-light);
	list-style: none;
}

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

.rf-faq summary::after {
	content: "+";
	float: right;
	color: var(--rf-gold);
	font-weight: 700;
}

.rf-faq details[open] summary::after {
	content: "−";
}

.rf-faq__answer {
	margin: 0.75rem 0 0;
	font-size: 0.9375rem;
	color: var(--rf-muted);
	line-height: 1.6;
}

/* Final CTA */
.rf-final-cta {
	text-align: center;
	padding-block: clamp(4rem, 10vw, 7rem);
	background:
		radial-gradient(ellipse 70% 60% at 50% 100%, rgba(239, 186, 96, 0.15), transparent 70%),
		var(--rf-base);
}

.rf-final-cta h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin: 0 0 1rem;
}

.rf-final-cta p {
	color: var(--rf-muted);
	margin: 0 0 1.5rem;
	max-width: 40ch;
	margin-inline: auto;
}

/* Footer */
.rf-footer {
	padding: 2.5rem 0;
	border-top: 1px solid var(--rf-glass-border);
	background: rgba(0, 0, 0, 0.25);
}

.rf-footer__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2rem;
	align-items: start;
}

.rf-footer__tagline {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	color: var(--rf-muted);
}

.rf-footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rf-footer__nav a {
	font-size: 0.875rem;
	color: var(--rf-muted);
}

.rf-footer__copy {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 0.8125rem;
	color: rgba(245, 240, 255, 0.45);
}

/* Responsive */
@media (max-width: 1024px) {
	.rf-hero__layout {
		grid-template-columns: 1fr;
		grid-template-areas:
			"title"
			"phone"
			"progress"
			"tabs"
			"actions";
		text-align: center;
	}

	.rf-hero-controls {
		display: contents;
	}

	.rf-hero-controls__top {
		display: contents;
	}

	.rf-hero-progress {
		grid-area: progress;
		flex: none;
		width: auto;
		display: flex;
		justify-content: center;
		margin-inline: auto;
		padding-block: 0.15rem;
	}

	.rf-hero-progress__track {
		width: 4px;
		height: 52px;
		min-height: 52px;
	}

	.rf-hero-tabs {
		grid-area: tabs;
		justify-content: center;
		margin-top: 0.25rem;
	}

	.rf-hero-stage {
		justify-self: center;
		width: 100%;
	}

	.rf-hero-slides,
	.rf-hero__actions {
		max-width: none;
		margin-inline: auto;
		width: 100%;
	}

	.rf-hero-features {
		margin-inline: auto;
		text-align: left;
	}

	.rf-hero__sub {
		margin-inline: auto;
	}

	.rf-hero__actions {
		justify-content: center;
	}

	.rf-models__grid,
	.rf-steps,
	.rf-demos__scroll,
	.rf-features__grid,
	.rf-pricing__grid {
		grid-template-columns: 1fr 1fr;
	}

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

	.rf-dashboard__body {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.rf-nav-toggle {
		display: flex;
	}

	.rf-nav {
		position: fixed;
		inset: var(--rf-header-h) 0 auto 0;
		flex-direction: column;
		align-items: stretch;
		padding: 1.5rem;
		background: rgba(10, 1, 24, 0.98);
		border-bottom: 1px solid var(--rf-glass-border);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
	}

	.rf-header.is-open .rf-nav {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.rf-nav__list {
		flex-direction: column;
		align-items: stretch;
	}

	.rf-nav__list a {
		display: block;
		padding: 0.75rem 0;
		font-size: 1rem;
	}

	.rf-header__cta {
		width: 100%;
		margin-top: 0.5rem;
	}

	.rf-models__grid,
	.rf-steps,
	.rf-demos__scroll,
	.rf-features__grid,
	.rf-pricing__grid {
		grid-template-columns: 1fr;
	}

	.rf-demos__scroll {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 1rem;
		padding-bottom: 0.5rem;
		-webkit-overflow-scrolling: touch;
	}

	.rf-demo-card {
		flex: 0 0 85%;
		scroll-snap-align: center;
	}

	.rf-footer__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.rf-trust__grid {
		grid-template-columns: 1fr;
	}

}
