/* RouteStack marketing theme — tokens from apps/web */

:root {
	--rs-bg: #0e0f1a;
	--rs-bg-alt: #0a0b14;
	--rs-card: #13141f;
	--rs-gold: #f5c542;
	--rs-gold-dark: #f0b429;
	--rs-text: #e5e7eb;
	--rs-muted: #9ca3af;
	--rs-border: rgba(255, 255, 255, 0.08);
	--rs-container: 80rem;
	--rs-header-h: 3.25rem;
	--font-sans: "Poppins", system-ui, sans-serif;
	--font-mono: "JetBrains Mono", ui-monospace, monospace;
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/poppins-latin-400.woff2") format("woff2");
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/poppins-latin-500.woff2") format("woff2");
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/poppins-latin-600.woff2") format("woff2");
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/poppins-latin-700.woff2") format("woff2");
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url("../fonts/poppins-latin-800.woff2") format("woff2");
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url("../fonts/poppins-latin-900.woff2") format("woff2");
}

@font-face {
	font-family: "JetBrains Mono";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/jetbrains-mono-latin-400.woff2") format("woff2");
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	background: var(--rs-bg);
	color: var(--rs-text);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

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

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

button,
input {
	font: inherit;
}

.site-logo {
	height: 2rem;
	width: auto;
}

.rs-container {
	max-width: var(--rs-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.rs-eyebrow {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--rs-gold);
	margin-bottom: 1rem;
}

.text-gradient-gold {
	background: linear-gradient(90deg, var(--rs-gold), var(--rs-gold-dark));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.rs-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 0.75rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--rs-bg);
	background: linear-gradient(135deg, var(--rs-gold), var(--rs-gold-dark));
	border: none;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
}

.rs-btn-primary:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(245, 197, 66, 0.25);
}

.rs-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 0.75rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #d1d5db;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: transparent;
	cursor: pointer;
	transition: border-color 0.3s, color 0.3s;
}

.rs-btn-secondary:hover {
	border-color: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.rs-section {
	position: relative;
	overflow: hidden;
}

.rs-section--alt {
	background: var(--rs-bg-alt);
}

.rs-section--main {
	background: var(--rs-bg);
}

/* Header */
.rs-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.rs-header__inner {
	max-width: var(--rs-container);
	margin: 0 auto;
	padding: 0.625rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.rs-header.is-scrolled {
	background: rgba(14, 15, 26, 0.95);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.rs-nav-desktop {
	display: none;
	align-items: center;
	gap: 2rem;
}

.rs-nav-link {
	font-size: 0.875rem;
	font-weight: 500;
	color: #d1d5db;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: color 0.2s;
}

.rs-nav-link:hover {
	color: #fff;
}

.rs-nav-dropdown {
	position: relative;
}

.rs-nav-dropdown__toggle {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.rs-nav-dropdown__chevron {
	transition: transform 0.2s;
}

.rs-nav-dropdown.is-open .rs-nav-dropdown__chevron {
	transform: rotate(180deg);
}

.rs-nav-dropdown__menu {
	position: absolute;
	top: 2rem;
	left: 0;
	width: 14rem;
	background: var(--rs-card);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	padding: 0.5rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px) scale(0.95);
	transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
	pointer-events: none;
}

.rs-nav-dropdown.is-open .rs-nav-dropdown__menu,
.rs-nav-dropdown:hover .rs-nav-dropdown__menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.rs-nav-dropdown__item {
	display: block;
	width: 100%;
	text-align: left;
	padding: 0.625rem 0.75rem;
	border-radius: 0.5rem;
	border: none;
	background: transparent;
	cursor: pointer;
	transition: background 0.2s;
}

.rs-nav-dropdown__item:hover {
	background: rgba(255, 255, 255, 0.05);
}

.rs-nav-dropdown__item-title {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: #fff;
}

.rs-nav-dropdown__item-desc {
	display: block;
	font-size: 0.75rem;
	color: #6b7280;
	margin-top: 0.125rem;
}

.rs-header__actions {
	display: none;
	align-items: center;
	gap: 0.75rem;
}

.rs-header__login {
	font-size: 0.875rem;
	font-weight: 500;
	color: #d1d5db;
}

.rs-header__login:hover {
	color: #fff;
}

.rs-nav-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem;
	background: none;
	border: none;
	color: #d1d5db;
	cursor: pointer;
}

.rs-nav-toggle:hover {
	color: #fff;
}

.rs-nav-mobile {
	display: none;
	background: rgba(14, 15, 26, 0.98);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: 1rem 1.5rem 1.5rem;
}

.rs-nav-mobile.is-open {
	display: block;
}

.rs-nav-mobile__links {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-top: 1rem;
}

.rs-nav-mobile__footer {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding-top: 1rem;
	margin-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.has-rs-header {
	padding-top: var(--rs-header-h);
}

@media (min-width: 768px) {
	.rs-nav-desktop,
	.rs-header__actions {
		display: flex;
	}

	.rs-nav-toggle,
	.rs-nav-mobile {
		display: none !important;
	}
}

/* Hero */
.rs-hero {
	position: relative;
	min-height: calc(100vh - 120px);
	padding-top: 5rem;
	padding-bottom: 5rem;
	background: var(--rs-bg);
	overflow: hidden;
}

.rs-hero__grid {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

@media (min-width: 1024px) {
	.rs-hero__grid {
		flex-direction: row;
		align-items: stretch;
	}
}

.rs-hero__copy {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.rs-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 1rem;
	border-radius: 9999px;
	background: rgba(245, 197, 66, 0.08);
	border: 1px solid rgba(245, 197, 66, 0.2);
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--rs-gold);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 1.5rem;
}

.rs-hero__badge-dot {
	position: relative;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--rs-gold);
}

.rs-hero__badge-dot::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--rs-gold);
	opacity: 0.75;
	animation: rs-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes rs-ping {
	75%,
	100% {
		transform: scale(2);
		opacity: 0;
	}
}

.rs-hero__title {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 900;
	line-height: 1.1;
	color: #fff;
	margin: 0 0 1.5rem;
}

.rs-hero__sub {
	font-size: 1rem;
	color: #9ca3af;
	line-height: 1.7;
	max-width: 36rem;
	margin: 0 0 2rem;
}

.rs-hero__sub strong {
	color: #fff;
	font-weight: 600;
}

.rs-hero__ctas {
	margin-bottom: 2rem;
}

.rs-hero__cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.rs-hero__fine {
	margin-top: 0.75rem;
	font-size: 0.75rem;
	color: #6b7280;
	display: flex;
	align-items: center;
	gap: 0.375rem;
}

.rs-hero__install {
	margin-top: auto;
	padding-top: 2rem;
}

.rs-hero__install-btn {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	max-width: 28rem;
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--rs-border);
	cursor: pointer;
	transition: border-color 0.2s;
}

.rs-hero__install-btn:hover {
	border-color: rgba(255, 255, 255, 0.15);
}

.rs-hero__install-btn code {
	font-family: var(--font-mono);
	font-size: 0.875rem;
	color: #9ca3af;
	flex: 1;
	text-align: left;
}

.rs-hero__panel {
	flex: 1;
	min-width: 0;
}

/* Hero tabs / panels */
.rs-hero-tabs__bar {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--rs-border);
	border-radius: 0.75rem;
	padding: 0.25rem;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	margin-bottom: 0.75rem;
}

.rs-hero-tabs__btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.625rem 1rem;
	border-radius: 0.5rem;
	border: none;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	background: transparent;
	color: #9ca3af;
	transition: all 0.3s;
}

.rs-hero-tabs__btn.is-active {
	background: linear-gradient(135deg, var(--rs-gold), var(--rs-gold-dark));
	color: var(--rs-bg);
	box-shadow: 0 8px 24px rgba(245, 197, 66, 0.2);
}

.rs-hero-tabs__btn:not(.is-active):hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.03);
}

.rs-panel {
	background: var(--rs-card);
	border: 1px solid var(--rs-border);
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.rs-panel__chrome {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(14, 15, 26, 0.7);
}

.rs-panel__dots {
	display: flex;
	gap: 0.375rem;
}

.rs-panel__dots span {
	width: 0.625rem;
	height: 0.625rem;
	border-radius: 50%;
}

.rs-panel__dots span:nth-child(1) {
	background: rgba(239, 68, 68, 0.7);
}

.rs-panel__dots span:nth-child(2) {
	background: rgba(234, 179, 8, 0.7);
}

.rs-panel__dots span:nth-child(3) {
	background: rgba(34, 197, 94, 0.7);
}

.rs-panel__title {
	font-size: 0.75rem;
	font-weight: 600;
	color: #9ca3af;
	margin-left: 0.5rem;
}

.rs-panel__status {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.75rem;
	font-family: var(--font-mono);
	color: #4ade80;
}

.rs-panel__status-dot {
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 50%;
	background: #4ade80;
	animation: rs-pulse 2s ease-in-out infinite;
}

@keyframes rs-pulse {
	50% {
		opacity: 0.5;
	}
}

.rs-panel__body {
	padding: 1rem;
	min-height: 400px;
	max-height: 400px;
	overflow-y: auto;
}

.rs-chat {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.rs-bubble {
	max-width: 82%;
	padding: 0.625rem 1rem;
	border-radius: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.5;
}

.rs-bubble--user {
	align-self: flex-end;
	background: rgba(245, 197, 66, 0.15);
	color: var(--rs-gold);
	border: 1px solid rgba(245, 197, 66, 0.2);
}

.rs-bubble--agent {
	align-self: flex-start;
	background: rgba(255, 255, 255, 0.06);
	color: #e5e7eb;
	border: 1px solid var(--rs-border);
}

.rs-flight-card {
	width: 100%;
	text-align: left;
	padding: 0.625rem 0.75rem;
	border-radius: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(255, 255, 255, 0.02);
	margin-bottom: 0.5rem;
}

.rs-flight-card--best {
	border-color: rgba(34, 197, 94, 0.3);
	background: rgba(34, 197, 94, 0.05);
}

.rs-flight-card__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 0.75rem;
}

.rs-flight-card__price {
	font-weight: 700;
}

.rs-flight-card--best .rs-flight-card__price {
	color: #4ade80;
}

.rs-badge-best {
	font-size: 0.625rem;
	padding: 0.125rem 0.5rem;
	border-radius: 9999px;
	background: rgba(34, 197, 94, 0.1);
	color: #4ade80;
	font-weight: 600;
}

.rs-hero-tab-panel {
	display: none;
}

.rs-hero-tab-panel.is-active {
	display: block;
}

.rs-commission-chart {
	padding: 0.75rem 1rem 1rem;
}

.rs-commission-chart__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	font-size: 0.6875rem;
	color: #6b7280;
	margin-bottom: 0.5rem;
}

.rs-commission-chart svg {
	width: 100%;
	height: auto;
	display: block;
}

.rs-commission-legend {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-top: 0.5rem;
	font-size: 0.6875rem;
	color: #9ca3af;
}

.rs-legend-swatch {
	display: inline-block;
	width: 0.625rem;
	height: 0.625rem;
	border-radius: 2px;
	margin-right: 0.375rem;
	vertical-align: middle;
}

/* Trust bar */
.rs-trust {
	padding: 3rem 0;
	background: var(--rs-bg-alt);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rs-trust__label {
	text-align: center;
	font-size: 0.75rem;
	font-weight: 500;
	color: #6b7280;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 1.75rem;
}

.rs-trust__pills {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.rs-trust-pill {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.75rem 1.25rem;
	border-radius: 9999px;
	border: 1px solid;
	font-size: 1rem;
	font-weight: 600;
	white-space: nowrap;
}

/* Combo cards */
.rs-combo {
	padding: 6rem 0;
	background: var(--rs-bg-alt);
}

.rs-combo__header {
	text-align: center;
	margin-bottom: 4rem;
}

.rs-combo__header h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	color: #fff;
	margin: 0 0 1rem;
	line-height: 1.2;
}

.rs-combo__header p {
	font-size: 1.125rem;
	color: #9ca3af;
	max-width: 42rem;
	margin: 0 auto;
}

.rs-combo__grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.rs-combo__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.rs-combo-card {
	background: var(--rs-card);
	border: 1px solid var(--rs-border);
	border-radius: 1rem;
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	transition: border-color 0.2s;
}

.rs-combo-card:hover {
	border-color: rgba(255, 255, 255, 0.15);
}

.rs-combo-card__icon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.rs-combo-card__eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 0.5rem;
}

.rs-combo-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.75rem;
}

.rs-combo-card__body {
	font-size: 0.875rem;
	color: #9ca3af;
	line-height: 1.6;
	flex: 1;
	margin-bottom: 1.25rem;
}

.rs-combo-card__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--rs-border);
}

.rs-combo-card__stat-val {
	font-family: var(--font-mono);
	font-size: 0.875rem;
	font-weight: 700;
}

.rs-combo-card__stat-label {
	font-size: 0.625rem;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Problem / solution */
.rs-problem {
	padding: 7rem 0;
	background: var(--rs-bg);
}

.rs-problem__intro {
	max-width: 48rem;
	margin-bottom: 5rem;
}

.rs-problem__intro h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	color: #fff;
	margin: 0 0 1.5rem;
	line-height: 1.2;
}

.rs-problem__intro p {
	font-size: 1.125rem;
	color: #9ca3af;
	line-height: 1.7;
}

.rs-problem__split {
	display: grid;
	gap: 2rem;
	margin-bottom: 5rem;
}

@media (min-width: 1024px) {
	.rs-problem__split {
		grid-template-columns: 1fr 1fr;
	}
}

.rs-problem-box {
	background: var(--rs-card);
	border-radius: 1rem;
	padding: 2rem;
}

.rs-problem-box--bad {
	border: 1px solid rgba(239, 68, 68, 0.1);
}

.rs-problem-box--good {
	border: 1px solid rgba(245, 197, 66, 0.15);
	box-shadow: 0 0 40px rgba(245, 197, 66, 0.05);
}

.rs-problem-box h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.rs-problem-box--bad h3 {
	color: #f87171;
}

.rs-problem-box--good h3 {
	color: var(--rs-gold);
}

.rs-problem-box ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rs-problem-box li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.875rem;
	margin-bottom: 1rem;
	color: #9ca3af;
}

.rs-problem-box--good li {
	color: #d1d5db;
}

.rs-feature-mini-grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.rs-feature-mini-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.rs-feature-mini {
	background: var(--rs-card);
	border: 1px solid var(--rs-border);
	border-radius: 1rem;
	padding: 1.75rem;
	transition: transform 0.3s, border-color 0.3s;
}

.rs-feature-mini:hover {
	border-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-4px);
}

/* Earnings */
.rs-earnings {
	padding: 6rem 0;
	background: var(--rs-bg);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rs-earnings__header {
	text-align: center;
	margin-bottom: 3rem;
}

.rs-earnings__header .rs-eyebrow {
	color: #4ade80;
}

.rs-earnings__header h2 {
	font-size: clamp(1.875rem, 3vw, 3rem);
	font-weight: 900;
	color: #fff;
	margin: 0 0 1rem;
}

.rs-earnings__grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 1024px) {
	.rs-earnings__grid {
		grid-template-columns: 3fr 2fr;
	}
}

.rs-earnings-row {
	background: var(--rs-card);
	border: 1px solid var(--rs-border);
	border-radius: 0.75rem;
	padding: 1.25rem;
}

.rs-earnings-row__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.rs-earnings-inputs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
}

.rs-earnings-input label {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.rs-earnings-input span {
	font-size: 0.625rem;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.rs-earnings-input__wrap {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--rs-border);
	border-radius: 0.5rem;
	padding: 0.5rem 0.75rem;
}

.rs-earnings-input input {
	width: 100%;
	background: transparent;
	border: none;
	color: #fff;
	font-family: var(--font-mono);
	font-size: 0.875rem;
	outline: none;
}

.rs-earnings-projection {
	background: var(--rs-card);
	border: 1px solid rgba(34, 197, 94, 0.3);
	border-radius: 1rem;
	padding: 1.75rem;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.rs-earnings-annual {
	font-family: var(--font-mono);
	font-size: 2.25rem;
	font-weight: 900;
	color: #4ade80;
	line-height: 1;
}

.rs-earnings-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--rs-border);
}

.rs-earnings-chip {
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	padding: 0.25rem 0.5rem;
	border-radius: 0.375rem;
	border: 1px solid;
}

/* How it works */
.rs-hiw {
	background: var(--rs-bg-alt);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rs-hiw__header {
	padding: 6rem 0 1.5rem;
	text-align: center;
}

.rs-hiw__headline {
	font-size: clamp(1.875rem, 3vw, 3rem);
	font-weight: 900;
	color: #fff;
	margin: 0 0 3.5rem;
}

.rs-hiw__tabs {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--rs-border);
	border-radius: 0.75rem;
	padding: 0.25rem;
}

.rs-hiw__tab {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	border: none;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	background: transparent;
	color: #9ca3af;
	white-space: nowrap;
}

.rs-hiw__tab.is-active {
	background: linear-gradient(135deg, var(--rs-gold), var(--rs-gold-dark));
	color: var(--rs-bg);
	box-shadow: 0 8px 24px rgba(245, 197, 66, 0.2);
}

.rs-hiw__panel {
	display: none;
	padding-bottom: 7rem;
}

.rs-hiw__panel.is-active {
	display: block;
}

.rs-vertical-grid {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.rs-vertical-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.rs-vertical-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.rs-vertical-card {
	position: relative;
	background: var(--rs-card);
	border: 1px solid var(--rs-border);
	border-radius: 1rem;
	padding: 1.75rem;
}

.rs-vertical-card--featured {
	border-color: rgba(79, 156, 249, 0.3);
	box-shadow: 0 8px 24px rgba(79, 156, 249, 0.1);
}

.rs-code-block {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--rs-bg);
	border: 1px solid var(--rs-border);
	border-radius: 0.75rem;
	padding: 0.75rem 1rem;
	margin-top: 0.5rem;
}

.rs-code-block code {
	font-family: var(--font-mono);
	font-size: 0.875rem;
	color: #d1d5db;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rs-badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 2rem;
}

.rs-badge-row span {
	padding: 0.25rem 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--rs-border);
	border-radius: 9999px;
	font-size: 0.75rem;
	color: #9ca3af;
}

.rs-demo-split {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 1024px) {
	.rs-demo-split {
		grid-template-columns: 1fr 1fr;
	}
}

.rs-code-editor {
	background: var(--rs-card);
	border: 1px solid var(--rs-border);
	border-radius: 1rem;
	overflow: hidden;
}

.rs-code-editor pre {
	margin: 0;
	padding: 1.25rem;
	font-family: var(--font-mono);
	font-size: 0.8125rem;
	line-height: 1.6;
	overflow-x: auto;
	color: #d1d5db;
}

/* Start building free */
.rs-sbf {
	padding: 5rem 0 7rem;
	background: var(--rs-bg);
}

.rs-sbf__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.25rem;
	border-radius: 9999px;
	border: 1px solid rgba(0, 214, 162, 0.2);
	background: rgba(0, 214, 162, 0.1);
	color: #00d6a2;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.rs-sbf__cards {
	display: grid;
	gap: 1.5rem;
	margin-top: 3.5rem;
}

@media (min-width: 768px) {
	.rs-sbf__cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1280px) {
	.rs-sbf__cards {
		grid-template-columns: repeat(4, 1fr);
	}
}

.rs-sbf-card {
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.02);
	border-radius: 1rem;
	padding: 1.5rem;
}

.rs-sbf-info {
	margin-top: 2.5rem;
	border: 1px solid rgba(0, 214, 162, 0.2);
	background: rgba(255, 255, 255, 0.02);
	border-radius: 1rem;
	padding: 2rem;
}

/* Pricing */
.rs-pricing {
	padding: 7rem 0;
	background: var(--rs-bg-alt);
	scroll-margin-top: calc(var(--rs-header-h) + 20px);
}

.rs-pricing__token-box {
	background: var(--rs-card);
	border: 1px solid var(--rs-border);
	border-radius: 1rem;
	padding: 2rem;
	margin-top: 3rem;
}

.rs-pricing__cards {
	display: grid;
	gap: 1.5rem;
	margin-top: 2.5rem;
}

@media (min-width: 768px) {
	.rs-pricing__cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.rs-pricing__cards {
		grid-template-columns: repeat(4, 1fr);
	}
}

.rs-price-card {
	position: relative;
	background: var(--rs-card);
	border: 1px solid var(--rs-border);
	border-radius: 1rem;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s;
}

.rs-price-card:hover {
	transform: translateY(-4px);
}

.rs-price-card--featured {
	border-color: rgba(245, 197, 66, 0.4);
	box-shadow: 0 20px 50px rgba(245, 197, 66, 0.1);
}

.rs-price-card__popular {
	position: absolute;
	top: -1rem;
	left: 50%;
	transform: translateX(-50%);
	padding: 0.25rem 1rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--rs-bg);
	background: linear-gradient(90deg, var(--rs-gold), var(--rs-gold-dark));
	white-space: nowrap;
}

.rs-price-card ul {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	flex: 1;
}

.rs-price-cta {
	width: 100%;
	margin-top: auto;
}

.rs-price-cta:not(.rs-price-cta--featured) {
	background: color-mix(in srgb, var(--plan-color) 15%, transparent);
	color: var(--plan-color);
	border: 1px solid color-mix(in srgb, var(--plan-color) 30%, transparent);
}

.rs-price-cta:not(.rs-price-cta--featured):hover {
	transform: scale(1.05);
	box-shadow: none;
}

@media (min-width: 640px) {
	.rs-doc-short {
		display: none;
	}
}

@media (max-width: 639px) {
	.rs-doc-long {
		display: none;
	}
}

@media (min-width: 768px) {
	.rs-stats-bar {
		grid-template-columns: repeat(4, 1fr) !important;
	}
}

@media (min-width: 1024px) {
	.rs-sbf-info-grid {
		grid-template-columns: 1.45fr 0.8fr !important;
		align-items: center;
	}
}

@media (min-width: 640px) {
	.rs-token-features-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (min-width: 1024px) {
	.rs-token-features-grid {
		grid-template-columns: repeat(5, 1fr) !important;
	}
}

@media (min-width: 640px) {
	.rs-billing-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

.rs-price-card li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: #d1d5db;
	margin-bottom: 0.75rem;
}

/* Manage everything */
.rs-manage {
	padding: 7rem 0;
	background: var(--rs-bg);
}

.rs-manage__video {
	max-width: 64rem;
	margin: 0 auto;
	border: 1px solid var(--rs-border);
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.rs-manage__video video {
	display: block;
	width: 100%;
	height: auto;
}

/* Footer */
.rs-footer {
	position: relative;
	background: var(--rs-bg-alt);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: 5rem 0 2.5rem;
	overflow: hidden;
}

.rs-footer__rule {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	max-width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--rs-gold), #002f6c, transparent);
}

.rs-footer-cta {
	text-align: center;
	margin-bottom: 5rem;
	padding: 4rem 1.5rem;
	background: var(--rs-card);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	position: relative;
	overflow: hidden;
}

.rs-footer-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 100%, rgba(245, 197, 66, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.rs-footer-cta h2 {
	position: relative;
	font-size: clamp(1.875rem, 3vw, 2.25rem);
	font-weight: 900;
	color: #fff;
	margin: 0 0 1rem;
}

.rs-footer-cta p {
	position: relative;
	color: #9ca3af;
	max-width: 28rem;
	margin: 0 auto 2rem;
}

.rs-footer-cta__actions {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.rs-footer__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
	margin-bottom: 4rem;
}

@media (min-width: 768px) {
	.rs-footer__grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.rs-footer__brand {
	grid-column: span 2;
}

@media (min-width: 768px) {
	.rs-footer__brand {
		grid-column: span 1;
	}
}

.rs-footer__brand p {
	font-size: 0.875rem;
	color: #6b7280;
	line-height: 1.6;
	margin: 1rem 0;
}

.rs-footer__socials {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.rs-footer__socials a {
	width: 2rem;
	height: 2rem;
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b7280;
	transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.rs-footer__socials a:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
}

.rs-footer__col h3 {
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin: 0 0 1.25rem;
}

.rs-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rs-footer__col li {
	margin-bottom: 0.75rem;
}

.rs-footer__col a {
	font-size: 0.875rem;
	color: #6b7280;
	transition: color 0.2s;
}

.rs-footer__col a:hover {
	color: #e5e7eb;
}

.rs-footer__bar {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
	.rs-footer__bar {
		flex-direction: row;
		justify-content: space-between;
	}
}

.rs-footer__bar p {
	font-size: 0.75rem;
	color: #4b5563;
	margin: 0;
}

.rs-footer__bar-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.5rem;
}

.rs-footer__bar-links a {
	font-size: 0.75rem;
	color: #4b5563;
}

.rs-footer__bar-links a:hover {
	color: #9ca3af;
}

.rs-status-pill {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.75rem;
	color: #4ade80;
}

.rs-status-pill span:first-child {
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 50%;
	background: #4ade80;
	animation: rs-pulse 2s ease-in-out infinite;
}

/* Forms (contact etc.) */
.rs-form .form-status {
	margin-top: 1rem;
	font-size: 0.875rem;
}

.rs-form .form-status.success {
	color: #4ade80;
}

.rs-form .form-status.error {
	color: #f87171;
}

.hidden {
	display: none !important;
}

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

/* ─── Marketing form pages (contact, apply) ─── */
.rs-marketing-page {
	min-height: 100vh;
	background: #0e0f1a;
	padding: 7rem 1.5rem 5rem;
	color: #e5e7eb;
}

.rs-form-page-wrap {
	max-width: 42rem;
	margin: 0 auto;
}

.rs-form-page__header {
	text-align: center;
	margin-bottom: 3rem;
}

.rs-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 1rem;
	border-radius: 9999px;
	background: rgba(245, 197, 66, 0.08);
	border: 1px solid rgba(245, 197, 66, 0.2);
	font-size: 0.6875rem;
	font-weight: 700;
	color: #f5c542;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 1.5rem;
}

.rs-form-page__header h1 {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 900;
	color: #fff;
	margin: 0 0 1rem;
}

.rs-form-page__header p {
	color: #9ca3af;
	font-size: 1.125rem;
	max-width: 36rem;
	margin: 0 auto;
	line-height: 1.6;
}

.rs-fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

.rs-fieldset__legend {
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.25rem;
}

.rs-fieldset__hint {
	font-size: 0.875rem;
	color: #6b7280;
	margin: 0 0 1rem;
}

.rs-form-divider {
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	margin: 2rem 0;
}

.rs-form-grid {
	display: grid;
	gap: 1rem;
}

.rs-form-grid--2 {
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.rs-form-grid--2 {
		grid-template-columns: 1fr 1fr;
	}
}

.rs-form-grid--align-start {
	align-items: start;
}

.rs-field {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	margin-bottom: 1rem;
}

.rs-field__label {
	font-size: 0.875rem;
	font-weight: 500;
	color: #d1d5db;
}

.rs-required {
	color: #f5c542;
}

.rs-form input[type="text"],
.rs-form input[type="email"],
.rs-form input[type="password"],
.rs-form select,
.rs-form textarea {
	width: 100%;
	padding: 0.625rem 1rem;
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 0.875rem;
	font-family: inherit;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.rs-form select {
	appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	padding-right: 2.5rem;
}

.rs-form input::placeholder,
.rs-form textarea::placeholder {
	color: #4b5563;
}

.rs-form input:focus,
.rs-form select:focus,
.rs-form textarea:focus {
	outline: none;
	border-color: rgba(245, 197, 66, 0.4);
	box-shadow: 0 0 0 1px rgba(245, 197, 66, 0.2);
}

.rs-form textarea {
	resize: vertical;
	min-height: 7rem;
}

.rs-password-wrap {
	position: relative;
}

.rs-password-wrap input {
	padding-right: 4.5rem;
}

.rs-password-toggle {
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: 0;
	color: #9ca3af;
	font-size: 0.75rem;
	cursor: pointer;
	padding: 0.25rem 0.5rem;
}

.rs-password-checks {
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0;
	font-size: 0.75rem;
	color: #6b7280;
}

.rs-password-checks li {
	margin-bottom: 0.25rem;
	padding-left: 1.25rem;
	position: relative;
}

.rs-password-checks li::before {
	content: "○";
	position: absolute;
	left: 0;
	color: #4b5563;
}

.rs-password-checks li.is-pass {
	color: #4ade80;
}

.rs-password-checks li.is-pass::before {
	content: "✓";
	color: #4ade80;
}

.rs-field-error {
	font-size: 0.875rem;
	color: #f87171;
	margin-top: 0.25rem;
}

.rs-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.875rem;
	color: #9ca3af;
	margin: 1rem 0;
}

.rs-checkbox input {
	margin-top: 0.125rem;
	accent-color: #f5c542;
}

.rs-checkbox a {
	color: #d1d5db;
	text-decoration: underline;
}

.rs-checkbox a:hover {
	color: #f5c542;
}

.rs-turnstile-wrap {
	display: flex;
	justify-content: center;
	margin: 1.5rem 0;
}

.rs-form-alert {
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.2);
	color: #f87171;
	font-size: 0.875rem;
}

.rs-form-submit {
	padding-top: 1rem;
}

.rs-form-footnote {
	text-align: center;
	font-size: 0.75rem;
	color: #4b5563;
	margin-top: 1rem;
}

.rs-form-login-link {
	text-align: center;
	font-size: 0.875rem;
	color: #9ca3af;
	margin-top: 1rem;
}

.rs-form-login-link a {
	color: #f5c542;
}

.rs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 0.75rem;
	font-weight: 700;
	font-size: 0.875rem;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
}

.rs-btn--primary {
	background: linear-gradient(135deg, #f5c542, #f0b429);
	color: #0e0f1a;
	box-shadow: 0 10px 25px rgba(245, 197, 66, 0.2);
}

.rs-btn--primary:hover:not(:disabled) {
	transform: scale(1.02);
}

.rs-btn--primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.rs-btn--block {
	width: 100%;
	padding: 1rem 2rem;
	font-size: 1rem;
}

.rs-btn--lg {
	padding: 1rem 2rem;
	font-size: 1rem;
}

.rs-btn--ghost {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #e5e7eb;
	margin-left: 0.75rem;
}

.rs-form-success {
	text-align: center;
	padding: 2rem 0;
}

.rs-form-success__icon {
	width: 4rem;
	height: 4rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 1.75rem;
}

.rs-form-success__icon--green {
	background: rgba(74, 222, 128, 0.1);
	border: 1px solid rgba(74, 222, 128, 0.2);
	color: #4ade80;
}

.rs-form-success__icon--gold {
	background: rgba(245, 197, 66, 0.1);
	border: 1px solid rgba(245, 197, 66, 0.2);
	color: #f5c542;
}

.rs-form-success h1 {
	font-size: 1.875rem;
	font-weight: 900;
	color: #fff;
	margin-bottom: 1rem;
}

.rs-form-success__lead {
	color: #9ca3af;
	font-size: 1.125rem;
}

.rs-form-success__sub {
	color: #6b7280;
	font-size: 0.875rem;
	margin: 1rem 0 2rem;
}

/* Legal layout */
.rs-legal-page {
	padding-bottom: 5rem;
}

.rs-legal-layout {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.rs-legal-layout__header {
	margin-bottom: 3rem;
}

.rs-legal-layout__header h1 {
	font-size: 2.25rem;
	font-weight: 900;
	color: #fff;
	margin: 0 0 0.75rem;
}

.rs-legal-layout__header p {
	color: #9ca3af;
	margin: 0;
}

.rs-legal-layout__grid {
	display: grid;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.rs-legal-layout__grid {
		grid-template-columns: 220px 1fr;
		gap: 3rem;
	}
}

.rs-legal-sidebar {
	display: none;
}

@media (min-width: 1024px) {
	.rs-legal-sidebar {
		display: block;
		position: sticky;
		top: 7rem;
		align-self: start;
	}
}

.rs-legal-sidebar__title {
	font-size: 0.75rem;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 1rem;
}

.rs-legal-sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rs-legal-sidebar a {
	display: block;
	padding: 0.5rem 0.75rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #9ca3af;
	text-decoration: none;
}

.rs-legal-sidebar a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.05);
}

.rs-legal-sidebar a.is-active {
	color: #f5c542;
	background: rgba(245, 197, 66, 0.1);
}

.rs-legal-mobile-nav {
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	grid-column: 1 / -1;
}

@media (min-width: 1024px) {
	.rs-legal-mobile-nav {
		display: none;
	}
}

.rs-legal-mobile-nav a {
	flex-shrink: 0;
	padding: 0.375rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 500;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #9ca3af;
	text-decoration: none;
}

.rs-legal-mobile-nav a.is-active {
	color: #f5c542;
	border-color: rgba(245, 197, 66, 0.3);
	background: rgba(245, 197, 66, 0.1);
}

.prose-legal {
	color: #9ca3af;
	font-size: 0.9375rem;
	line-height: 1.8;
	min-width: 0;
}

.prose-legal__title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.prose-legal h3 {
	color: #e5e7eb;
	font-size: 1.125rem;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.prose-legal h4 {
	color: #d1d5db;
	font-size: 1rem;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

.prose-legal p {
	margin-bottom: 1rem;
}

.prose-legal ul {
	list-style-type: disc;
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

.prose-legal li {
	margin-bottom: 0.5rem;
}

.prose-legal a {
	color: #f5c542;
	text-decoration: none;
}

.prose-legal a:hover {
	color: #f0b429;
	text-decoration: underline;
}

.prose-legal strong {
	color: #d1d5db;
}

/* Landing pages */
.rs-lp {
	background: #0e0f1a;
	color: #e5e7eb;
	padding-top: 5.5rem;
}

.rs-lp-hero {
	padding: 3rem 1.5rem 4rem;
}

.rs-lp-hero__inner {
	max-width: 80rem;
	margin: 0 auto;
}

.rs-lp-grid-2 {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.rs-lp-grid-2 {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}
}

.rs-lp-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 1rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.rs-lp-pill--green {
	border: 1px solid rgba(16, 185, 129, 0.3);
	background: rgba(16, 185, 129, 0.1);
	color: #10b981;
}

.rs-lp-pill--gold {
	border: 1px solid rgba(245, 197, 66, 0.25);
	background: rgba(245, 197, 66, 0.08);
	color: #f5c542;
	font-size: 0.625rem;
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: 0.15em;
}

.rs-lp-hero h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	line-height: 1.1;
	color: #fff;
	margin: 0 0 1.25rem;
}

.rs-gradient-text {
	background: linear-gradient(90deg, #f5c542, #f0b429);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.rs-lp-lead {
	color: #9ca3af;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	max-width: 32rem;
}

.rs-lp-checklist {
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
}

.rs-lp-checklist li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.625rem;
	font-size: 0.875rem;
	color: #d1d5db;
}

.rs-lp-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #10b981;
	font-weight: 700;
}

.rs-lp-cta-note {
	font-size: 0.75rem;
	color: #6b7280;
	margin-top: 0.75rem;
}

.rs-lp-npm {
	display: inline-flex;
	margin-top: 1.25rem;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	background: #1e293b;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.rs-lp-npm code {
	font-family: var(--font-mono);
	font-size: 0.875rem;
	color: #10b981;
}

.rs-lp-code-panel {
	background: #13141f;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.rs-lp-code-panel__bar {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.625rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.02);
}

.rs-lp-code-panel__bar span:nth-child(-n + 3) {
	width: 0.625rem;
	height: 0.625rem;
	border-radius: 50%;
	background: rgba(239, 68, 68, 0.7);
}

.rs-lp-code-panel__bar span:nth-child(2) {
	background: rgba(234, 179, 8, 0.7);
}

.rs-lp-code-panel__bar span:nth-child(3) {
	background: rgba(34, 197, 94, 0.7);
}

.rs-lp-code-panel__title {
	margin-left: 0.5rem;
	font-size: 0.75rem;
	font-family: var(--font-mono);
	color: #6b7280;
}

.rs-lp-code-panel pre {
	margin: 0;
	padding: 1.25rem;
	font-size: 0.8125rem;
	line-height: 1.6;
	overflow-x: auto;
}

.rs-lp-code-panel code {
	font-family: var(--font-mono);
	color: #d1d5db;
}

.rs-lp-stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.75rem;
	padding: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rs-lp-stats-row div {
	text-align: center;
	padding: 0.75rem 0.5rem;
	border-radius: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
}

.rs-lp-stats-row strong {
	display: block;
	font-size: 0.75rem;
	color: #fff;
}

.rs-lp-stats-row span {
	font-size: 0.6875rem;
	color: #9ca3af;
}

.rs-lp-trust-strip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1.5rem;
	padding: 1.5rem;
	background: #0a0b14;
	border-block: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 0.75rem;
	color: #6b7280;
}

.rs-lp-trust-chip {
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #9ca3af;
}

.rs-lp-section {
	padding: 4rem 1.5rem;
	max-width: 72rem;
	margin: 0 auto;
}

.rs-lp-section--dark {
	background: #0a0b14;
	max-width: none;
}

.rs-lp-section--dark .rs-lp-section__head,
.rs-lp-section--dark .rs-lp-compare,
.rs-lp-section--dark .rs-lp-steps {
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
}

.rs-lp-section__head {
	text-align: center;
	margin-bottom: 2.5rem;
}

.rs-lp-section__head h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 900;
	color: #fff;
	margin: 0 0 0.75rem;
}

.rs-lp-section__head p {
	color: #9ca3af;
	max-width: 40rem;
	margin: 0 auto;
}

.rs-lp-eyebrow {
	display: block;
	color: #f5c542;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 0.75rem;
}

.rs-lp-compare {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.rs-lp-compare {
		grid-template-columns: 1fr 1fr;
	}
}

.rs-lp-compare__col {
	background: #13141f;
	border-radius: 1rem;
	padding: 1.75rem;
}

.rs-lp-compare__col--bad {
	border: 1px solid rgba(239, 68, 68, 0.15);
}

.rs-lp-compare__col--good {
	border: 1px solid rgba(245, 197, 66, 0.2);
	box-shadow: 0 10px 30px rgba(245, 197, 66, 0.05);
}

.rs-lp-compare__col h3 {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 1.25rem;
}

.rs-lp-compare__col--bad h3 {
	color: #f87171;
}

.rs-lp-compare__col--good h3 {
	color: #f5c542;
}

.rs-lp-compare__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rs-lp-compare__col li {
	font-size: 0.875rem;
	color: #9ca3af;
	margin-bottom: 0.75rem;
	padding-left: 1rem;
	position: relative;
}

.rs-lp-compare__col--good li {
	color: #d1d5db;
}

.rs-lp-compare__total {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-family: var(--font-mono);
	font-weight: 900;
	font-size: 1.5rem;
}

.rs-lp-compare__total--bad {
	color: #f87171;
}

.rs-lp-compare__total--good {
	color: #f5c542;
}

.rs-lp-stat-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	margin-top: 2rem;
}

@media (min-width: 640px) {
	.rs-lp-stat-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.rs-lp-stat-grid div {
	text-align: center;
	padding: 1rem 0.5rem;
	border-radius: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
}

.rs-lp-stat-grid strong {
	display: block;
	font-size: 1.5rem;
	font-weight: 900;
	color: #f5c542;
}

.rs-lp-stat-grid span {
	font-size: 0.75rem;
	color: #6b7280;
}

.rs-lp-section__cta {
	text-align: center;
	margin-top: 2.5rem;
}

.rs-lp-steps {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.rs-lp-steps {
		grid-template-columns: repeat(3, 1fr);
	}
}

.rs-lp-step {
	background: #13141f;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	padding: 1.75rem;
}

.rs-lp-step__num {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #10b981;
}

.rs-lp-step h3 {
	color: #fff;
	margin: 0.5rem 0;
}

.rs-lp-step p {
	font-size: 0.875rem;
	color: #6b7280;
	line-height: 1.6;
}

.rs-lp-step code {
	display: block;
	margin-top: 1rem;
	padding: 0.5rem 0.75rem;
	border-radius: 0.5rem;
	background: #0e0f1a;
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: #10b981;
}

.rs-lp-quotes {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.rs-lp-quotes {
		grid-template-columns: repeat(3, 1fr);
	}
}

.rs-lp-quotes blockquote {
	margin: 0;
	background: #13141f;
	border: 1px solid rgba(245, 197, 66, 0.2);
	border-radius: 1rem;
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.rs-lp-quotes p {
	font-size: 0.875rem;
	color: #d1d5db;
	font-style: italic;
	flex: 1;
	margin: 0 0 1rem;
}

.rs-lp-quotes footer {
	font-size: 0.75rem;
	color: #6b7280;
	border-top: 1px solid rgba(245, 197, 66, 0.1);
	padding-top: 1rem;
}

.rs-lp-earnings-card,
.rs-lp-flow-card,
.rs-lp-prize-hero {
	background: #13141f;
	border-radius: 1rem;
	padding: 1.75rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.rs-lp-earnings-card {
	border-color: rgba(34, 197, 94, 0.3);
}

.rs-lp-earnings-card h3 {
	color: #4ade80;
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.rs-lp-earnings-rows {
	list-style: none;
	margin: 1.5rem 0;
	padding: 0;
}

.rs-lp-earnings-rows li {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.75rem;
	font-size: 0.875rem;
	color: #9ca3af;
}

.rs-lp-earnings-weekly,
.rs-lp-earnings-annual {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 1rem;
}

.rs-lp-earnings-annual strong {
	font-size: 2.25rem;
	color: #4ade80;
	font-family: var(--font-mono);
}

.rs-lp-earnings-disclaimer {
	font-size: 0.6875rem;
	color: #4b5563;
	font-style: italic;
	text-align: center;
}

.rs-lp-flow-card ol {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: flow;
}

.rs-lp-flow-card li {
	counter-increment: flow;
	margin-bottom: 0.75rem;
	padding: 0.875rem 1rem;
	border-radius: 0.75rem;
	border: 1px solid rgba(245, 197, 66, 0.2);
	background: rgba(255, 255, 255, 0.02);
	font-size: 0.875rem;
}

.rs-lp-flow-card li::before {
	content: "0" counter(flow) " ";
	font-family: var(--font-mono);
	font-weight: 700;
	color: #f5c542;
}

.rs-lp-flow-foot {
	font-size: 0.75rem;
	color: #4ade80;
	margin-top: 1rem;
}

.rs-lp-final-cta {
	text-align: center;
	padding: 4rem 1.5rem 5rem;
	background: #0a0b14;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rs-lp-final-cta h2 {
	font-size: 2rem;
	font-weight: 900;
	color: #fff;
	margin: 0 0 0.75rem;
}

.rs-lp-challenge-h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.05;
}

.rs-lp-handwrite {
	display: block;
	font-size: 1.75rem;
	margin-bottom: 0.5rem;
	color: #fff;
}

.rs-lp-subhead {
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
}

.rs-lp-prize-tag {
	display: inline-block;
	padding: 0.375rem 0.875rem;
	border-radius: 9999px;
	background: #f5c542;
	color: #0e0f1a;
	font-size: 0.6875rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 1rem;
}

.rs-lp-prize-value strong {
	font-size: 3rem;
	color: #f5c542;
}

.rs-lp-prize-grid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.rs-lp-prize-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.rs-lp-prize-card {
	background: #13141f;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	padding: 1.5rem;
}

.rs-lp-prize-card--featured {
	grid-column: 1 / -1;
	border-color: rgba(245, 197, 66, 0.35);
}

.rs-lp-timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 40rem;
}

.rs-lp-timeline li {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem 0 1rem 1.5rem;
	border-left: 2px solid rgba(245, 197, 66, 0.3);
	margin-left: 0.5rem;
	margin-bottom: 0.5rem;
}

.rs-lp-timeline strong {
	color: #fff;
}

.rs-lp-timeline span {
	font-size: 0.875rem;
	color: #9ca3af;
}

/* Blog */
.rs-blog-page {
	background: #0e0f1a;
	color: #e5e7eb;
	padding: 7rem 1.5rem 4rem;
	min-height: 60vh;
}

.rs-blog-header {
	max-width: 48rem;
	margin: 0 auto 3rem;
	text-align: center;
}

.rs-blog-header h1 {
	font-size: 2.5rem;
	font-weight: 900;
	color: #fff;
	margin: 0.5rem 0 1rem;
}

.rs-post-grid {
	display: grid;
	gap: 1.5rem;
	max-width: 72rem;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.rs-post-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.rs-post-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.rs-post-card {
	background: #13141f;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.2s;
}

.rs-post-card:hover {
	border-color: rgba(245, 197, 66, 0.25);
}

.rs-post-card__thumb {
	display: block;
	aspect-ratio: 16 / 10;
	background: #0a0b14;
	overflow: hidden;
	position: relative;
}

.rs-post-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rs-post-card__fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 2rem;
	font-weight: 900;
	color: #f5c542;
}

.rs-post-card__body {
	padding: 1.25rem 1.5rem 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.rs-post-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
	margin-bottom: 0.5rem;
}

.post-tag {
	font-size: 0.6875rem;
	font-weight: 600;
	padding: 0.125rem 0.5rem;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-tag--engineering {
	background: rgba(16, 185, 129, 0.1);
	color: #6ee7b7;
	border-color: rgba(16, 185, 129, 0.2);
}

.post-tag--product {
	background: rgba(234, 179, 8, 0.1);
	color: #fde047;
	border-color: rgba(234, 179, 8, 0.2);
}

.post-tag--guides {
	background: rgba(20, 184, 166, 0.1);
	color: #5eead4;
	border-color: rgba(20, 184, 166, 0.2);
}

.post-tag--company-news {
	background: rgba(163, 230, 53, 0.1);
	color: #d9f99d;
	border-color: rgba(163, 230, 53, 0.2);
}

.post-tag--default {
	color: #9ca3af;
}

.rs-post-card__date {
	font-size: 0.75rem;
	color: #6b7280;
	margin: 0 0 0.5rem;
}

.rs-post-card h2 {
	font-size: 1.125rem;
	margin: 0 0 0.5rem;
	line-height: 1.35;
}

.rs-post-card h2 a {
	color: #fff;
	text-decoration: none;
}

.rs-post-card h2 a:hover {
	color: #f5c542;
}

.rs-post-card__body > p:last-child {
	font-size: 0.875rem;
	color: #9ca3af;
	margin: 0;
	flex: 1;
}

.rs-pagination {
	max-width: 72rem;
	margin: 2rem auto 0;
	text-align: center;
}

.rs-blog-single {
	max-width: 48rem;
	margin: 0 auto;
}

.rs-back-link {
	display: inline-block;
	color: #9ca3af;
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
	text-decoration: none;
}

.rs-back-link:hover {
	color: #f5c542;
}

.rs-single-post h1 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 900;
	color: #fff;
	margin: 0.75rem 0 1.5rem;
	line-height: 1.2;
}

.rs-single-hero {
	margin: 0 0 2rem;
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.rs-single-hero img {
	width: 100%;
	height: auto;
	display: block;
}

.prose-blog {
	color: #cbd5e1;
	font-size: 1rem;
	line-height: 1.75;
}

.prose-blog h2,
.prose-blog h3 {
	color: #f3f4f6;
	margin-top: 2rem;
}

.prose-blog a {
	color: #f5c542;
}

.prose-blog pre,
.prose-blog code {
	font-family: var(--font-mono);
}

/* Docs full viewport */
.docs-page--full {
	min-height: calc(100vh - 4rem);
	display: flex;
	flex-direction: column;
	padding-top: 4.5rem;
	background: #0a0b14;
}

.docs-page--full .redoc-container {
	flex: 1;
	min-height: calc(100vh - 5rem);
}

.docs-page--full .docs-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50vh;
	color: #9ca3af;
}

/* ── LP pricing strip, demo, pillars, cookie, blog featured, build challenge ── */

@font-face {
	font-family: "Caveat";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/caveat-latin-700.woff2") format("woff2");
}

@font-face {
	font-family: "Kalam";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/kalam-latin-700.woff2") format("woff2");
}

@font-face {
	font-family: "Permanent Marker";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/permanent-marker-latin-400.woff2") format("woff2");
}

.rs-lp-handwrite {
	font-family: "Caveat", cursive;
	font-size: clamp(2rem, 4vw, 3.25rem);
	color: #fff;
	display: block;
}

.rs-lp-pricing-strip {
	padding: 5rem 1.5rem;
	background: #0a0b14;
	border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.rs-lp-pricing-strip__inner {
	max-width: 72rem;
	margin: 0 auto;
}

.rs-lp-pricing-strip__head {
	text-align: center;
	margin-bottom: 2.5rem;
}

.rs-lp-pricing-strip__eyebrow {
	display: block;
	color: #f5c542;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 0.75rem;
}

.rs-lp-pricing-strip__head h2 {
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	font-weight: 900;
	color: #fff;
	margin: 0 0 0.5rem;
}

.rs-lp-pricing-strip__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
	.rs-lp-pricing-strip__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.rs-lp-pricing-tier {
	position: relative;
	background: #13141f;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.75rem;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
}

.rs-lp-pricing-tier.is-featured {
	border-color: rgba(245, 197, 66, 0.4);
	box-shadow: 0 10px 30px rgba(245, 197, 66, 0.1);
}

.rs-lp-pricing-tier__badge {
	position: absolute;
	top: -0.5rem;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #f5c542, #f0b429);
	color: #0e0f1a;
	font-size: 0.625rem;
	font-weight: 800;
	padding: 0.125rem 0.625rem;
	border-radius: 9999px;
	white-space: nowrap;
}

.rs-lp-pricing-tier__head h3 {
	font-size: 0.875rem;
	color: #fff;
	margin: 0;
}

.rs-lp-pricing-tier__price {
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--tier-color, #f5c542);
	margin: 0.5rem 0;
}

.rs-lp-pricing-tier__price small {
	font-size: 0.75rem;
	color: #6b7280;
	font-weight: 400;
}

.rs-lp-pricing-tier__value {
	font-size: 0.75rem;
	color: #9ca3af;
	flex: 1;
	margin: 0 0 0.75rem;
	line-height: 1.5;
}

.rs-lp-pricing-tier__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	border-radius: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-decoration: none;
	background: color-mix(in srgb, var(--tier-color) 12%, transparent);
	color: var(--tier-color);
	border: 1px solid color-mix(in srgb, var(--tier-color) 30%, transparent);
}

.rs-lp-pricing-tier.is-featured .rs-lp-pricing-tier__cta {
	background: linear-gradient(135deg, #f5c542, #f0b429);
	color: #0e0f1a;
	border: none;
}

.rs-lp-pricing-strip__link {
	text-align: center;
	margin: 0;
}

.rs-lp-pricing-strip__link a {
	color: #f5c542;
	font-size: 0.875rem;
	text-decoration: none;
}

.rs-lp-demo__grid {
	display: grid;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 1024px) {
	.rs-lp-demo__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.rs-lp-demo__request,
.rs-lp-demo__response {
	padding: 1.25rem;
	min-height: 280px;
}

.rs-lp-demo__response {
	background: rgba(14, 15, 26, 0.4);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 1024px) {
	.rs-lp-demo__response {
		border-top: none;
		border-left: 1px solid rgba(255, 255, 255, 0.08);
	}
}

.rs-lp-demo__label {
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #6b7280;
}

.rs-lp-demo__label-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.75rem;
}

.rs-lp-demo__copy {
	background: none;
	border: none;
	color: #6b7280;
	cursor: pointer;
}

.rs-lp-demo__code .tok-comment { color: #6b7280; }
.rs-lp-demo__code .tok-plain { color: #d1d5db; }
.rs-lp-demo__code .tok-string { color: #4ade80; }
.rs-lp-demo__code .tok-gold { color: #f5c542; }
.rs-lp-demo__code .tok-blue { color: #60a5fa; }

.rs-lp-demo__run {
	margin-top: 1rem;
	font-size: 0.75rem;
}

.rs-lp-demo__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 12rem;
	font-size: 0.75rem;
	color: #6b7280;
}

.rs-lp-demo__badges {
	margin-left: auto;
	display: flex;
	gap: 0.375rem;
}

.rs-lp-demo__badge {
	font-family: var(--font-mono);
	font-size: 0.625rem;
	padding: 0.125rem 0.375rem;
	border-radius: 0.25rem;
}

.rs-lp-demo__badge--ok {
	background: rgba(34, 197, 94, 0.15);
	color: #4ade80;
}

.rs-lp-demo__badge--ms {
	background: rgba(245, 197, 66, 0.15);
	color: #f5c542;
}

.rs-lp-code-panel__bar {
	flex-wrap: wrap;
}

.rs-lp-pillars {
	display: grid;
	gap: 1.5rem;
	max-width: 72rem;
	margin: 0 auto 2rem;
}

@media (min-width: 768px) {
	.rs-lp-pillars {
		grid-template-columns: repeat(3, 1fr);
	}
}

.rs-lp-pillar {
	background: #13141f;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	padding: 1.75rem;
}

.rs-lp-pillar__eyebrow {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--pillar-color);
}

.rs-lp-pillar h3 {
	color: #fff;
	font-size: 1.25rem;
	margin: 0.75rem 0 0.5rem;
}

.rs-lp-pillar p {
	color: #9ca3af;
	font-size: 0.875rem;
	line-height: 1.6;
	margin: 0;
}

.rs-lp-stat-grid--tier {
	max-width: 56rem;
	margin: 0 auto 2rem;
}

.rs-lp-social__disclaimer {
	text-align: center;
	font-size: 0.75rem;
	color: #6b7280;
	font-style: italic;
	margin: -1rem 0 2rem;
}

.rs-lp-cts-band,
.rs-lp-cts-stats {
	background: #13141f;
	border: 1px solid rgba(245, 197, 66, 0.2);
	border-radius: 0.75rem;
	padding: 1.25rem 1.5rem;
	max-width: 72rem;
	margin: 2rem auto 0;
}

.rs-lp-cts-band__title {
	color: #f5c542;
	font-weight: 700;
	font-size: 0.875rem;
	margin: 0 0 0.75rem;
}

.rs-lp-cts-band__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.75rem;
	color: #9ca3af;
}

.rs-lp-coming-soon {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	align-items: center;
	max-width: 72rem;
	margin: 1rem auto 0;
	padding: 1rem 1.5rem;
	background: #13141f;
	border: 1px solid rgba(167, 139, 250, 0.15);
	border-radius: 0.75rem;
	font-size: 0.875rem;
	color: #9ca3af;
}

.rs-lp-coming-soon strong {
	color: #a78bfa;
	font-size: 0.6875rem;
	text-transform: uppercase;
}

.rs-lp-trust-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 1.5rem auto 0;
	max-width: 72rem;
	font-size: 0.75rem;
	color: #6b7280;
}

.rs-lp-trust-badges--center {
	justify-content: center;
}

.rs-lp-trust-badges--hero {
	justify-content: flex-start;
	margin: 1rem 0;
}

.rs-lp-trust-badges--hero span {
	padding: 0.35rem 0.75rem;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: #13141f;
	font-size: 0.6875rem;
	color: #d1d5db;
}

.rs-lp-cts-stats__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.rs-lp-cts-stats__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.rs-lp-cts-stats__grid strong {
	display: block;
	font-size: 1.875rem;
	color: #f5c542;
}

.rs-lp-cts-stats__grid span {
	font-size: 0.6875rem;
	color: #6b7280;
	text-transform: uppercase;
}

.rs-lp-final-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}

.rs-lp-final-pills li {
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	border: 1px solid rgba(16, 185, 129, 0.25);
	background: rgba(16, 185, 129, 0.05);
	color: #10b981;
	font-size: 0.875rem;
}

.rs-lp-cta-block--center {
	text-align: center;
}

.rs-lp-final-foot {
	text-align: center;
	color: #6b7280;
	font-size: 0.875rem;
	margin-top: 2rem;
}

.rs-lp-works-with {
	text-align: center;
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #6b7280;
	margin: 2rem 0 1rem;
}

.rs-lp-frameworks {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	max-width: 72rem;
	margin: 0 auto;
}

.rs-lp-frameworks span {
	padding: 0.5rem 1rem;
	border-radius: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	font-size: 0.875rem;
	color: #9ca3af;
}

.rs-lp-compare--numbered .rs-lp-compare__num {
	font-family: var(--font-mono);
	font-size: 0.625rem;
	color: #6b7280;
	margin-right: 0.5rem;
}

.rs-lp-compare__total small {
	display: block;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #6b7280;
	margin-bottom: 0.25rem;
}

.rs-cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 1rem;
	background: #13141f;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
}

.rs-cookie-notice__inner {
	max-width: 72rem;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.875rem;
	color: #9ca3af;
}

.rs-cookie-notice a {
	color: #f5c542;
	margin-left: 0.35rem;
}

.rs-blog-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	max-width: 72rem;
	margin: 0 auto 2rem;
	padding: 0 1.5rem;
}

.rs-blog-filter {
	font-size: 0.8125rem;
	padding: 0.375rem 0.875rem;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.03);
	color: #9ca3af;
	cursor: pointer;
	text-decoration: none;
}

.rs-blog-filter.is-active,
.rs-blog-filter:hover {
	border-color: rgba(245, 197, 66, 0.35);
	color: #f5c542;
}

.rs-post-featured {
	grid-column: 1 / -1;
	display: grid;
	gap: 1.5rem;
	background: #13141f;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
	.rs-post-featured {
		grid-template-columns: 1.2fr 1fr;
	}
}

.rs-post-featured__thumb {
	display: block;
	min-height: 220px;
	background: #0a0b14;
}

.rs-post-featured__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rs-post-featured__body {
	padding: 1.5rem 1.5rem 2rem;
}

.rs-post-featured__body h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.rs-post-featured__read {
	display: inline-block;
	margin-top: 1rem;
	color: #f5c542;
	font-weight: 600;
	text-decoration: none;
}

/* Build Challenge */
.rs-bc-section {
	max-width: none;
}

.rs-bc-top-prize {
	max-width: 72rem;
	margin: 0 auto 1.5rem;
	padding: 2rem;
	border-radius: 1.5rem;
	border: 1px solid rgba(245, 197, 66, 0.4);
	background: linear-gradient(135deg, #1a1b2a, #13141f);
}

.rs-bc-top-prize__tag {
	display: inline-block;
	background: #f5c542;
	color: #0e0f1a;
	font-size: 0.6875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	padding: 0.35rem 0.75rem;
	border-radius: 9999px;
	margin-bottom: 1rem;
}

.rs-bc-top-prize__amount {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 900;
	color: #f5c542;
	margin: 0;
}

.rs-bc-travel-club {
	max-width: 72rem;
	margin: 1.5rem auto 0;
	padding: 1.5rem 2rem;
	border-radius: 1rem;
	border: 1px solid rgba(167, 139, 250, 0.3);
	background: rgba(167, 139, 250, 0.06);
}

.rs-bc-travel-club__eyebrow {
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #c4b5fd;
}

.rs-bc-travel-club__value {
	font-size: 1.25rem;
	margin-top: 1rem;
}

.rs-bc-footnote {
	text-align: center;
	color: #6b7280;
	font-size: 0.875rem;
	max-width: 40rem;
	margin: 2rem auto 0;
}

.rs-bc-timeline {
	max-width: 72rem;
	margin: 0 auto;
	position: relative;
}

.rs-bc-timeline__nodes {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0.25rem;
	margin-bottom: 1.5rem;
}

.rs-bc-timeline__node {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: inherit;
}

.rs-bc-timeline__dot {
	display: block;
	width: 12px;
	height: 12px;
	margin: 0 auto;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.25);
	background: #13141f;
}

.rs-bc-timeline__node.is-active .rs-bc-timeline__dot {
	width: 18px;
	height: 18px;
	background: #f5c542;
	border-color: #f5c542;
	box-shadow: 0 0 0 8px rgba(245, 197, 66, 0.18);
}

.rs-bc-timeline__day {
	display: block;
	margin-top: 0.75rem;
	font-size: 0.625rem;
	font-family: var(--font-mono);
	font-weight: 700;
	text-transform: uppercase;
	color: #6b7280;
}

.rs-bc-timeline__node.is-active .rs-bc-timeline__day {
	color: #f5c542;
}

.rs-bc-timeline__panel {
	display: none;
	background: #13141f;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1.5rem;
	padding: 2rem;
}

.rs-bc-timeline__panel.is-active {
	display: block;
}

.rs-bc-timeline__panel h3 {
	color: #fff;
	font-size: 1.75rem;
	margin: 0.25rem 0;
}

.rs-bc-timeline__pause {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 0.35rem 0.75rem;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	color: #9ca3af;
	cursor: pointer;
}

.rs-bc-timeline__hint {
	text-align: center;
	font-size: 0.6875rem;
	color: #6b7280;
	margin-top: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.rs-bc-judges {
	display: grid;
	gap: 1.5rem;
	max-width: 72rem;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.rs-bc-judges {
		grid-template-columns: repeat(3, 1fr);
	}
}

.rs-bc-judge {
	background: #13141f;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	padding: 1.5rem;
}

.rs-bc-judge__avatar {
	width: 4rem;
	height: 4rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 1.25rem;
	color: var(--judge-color);
	background: color-mix(in srgb, var(--judge-color) 12%, transparent);
	margin-bottom: 1rem;
}

.rs-bc-judge__title {
	font-size: 0.75rem;
	color: #9ca3af;
}

.rs-bc-judge__org {
	font-size: 0.6875rem;
	text-transform: uppercase;
	color: #6b7280;
	margin: 0.5rem 0 1rem;
}

.rs-bc-judge__bio {
	font-size: 0.875rem;
	color: #9ca3af;
	line-height: 1.6;
}

.rs-bc-judge__focus {
	font-size: 0.625rem;
	font-family: var(--font-mono);
	text-transform: uppercase;
	color: var(--judge-color);
	margin-top: 1rem;
}

.rs-bc-criteria {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 2rem;
	font-size: 0.875rem;
	color: #6b7280;
}

.rs-bc-criteria__chip {
	padding: 0.35rem 0.75rem;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.75rem;
	color: #d1d5db;
}

.rs-bc-building-note {
	max-width: 48rem;
	margin: 0 auto 2rem;
	padding: 1.25rem;
	border-radius: 1rem;
	border: 1px solid rgba(245, 197, 66, 0.2);
	background: rgba(245, 197, 66, 0.08);
	font-size: 0.875rem;
	color: #e5e7eb;
}

.rs-bc-themes {
	max-width: 56rem;
	margin: 0 auto;
}

.rs-bc-theme {
	background: #13141f;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.75rem;
	margin-bottom: 0.5rem;
	padding: 0 1rem;
}

.rs-bc-theme summary {
	cursor: pointer;
	padding: 1rem 0;
	font-weight: 700;
	color: #fff;
	list-style: none;
}

.rs-bc-theme summary::-webkit-details-marker {
	display: none;
}

.rs-bc-theme__body {
	padding-bottom: 1.25rem;
	color: #9ca3af;
	font-size: 0.875rem;
}

.rs-bc-theme__tagline {
	font-style: italic;
	color: #f5c542;
}

.rs-bc-theme__grid {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

@media (min-width: 768px) {
	.rs-bc-theme__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.rs-bc-theme__grid h4 {
	font-size: 0.625rem;
	text-transform: uppercase;
	color: #6b7280;
}

.rs-bc-faq {
	max-width: 48rem;
	margin: 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	overflow: hidden;
}

.rs-bc-faq__item + .rs-bc-faq__item {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rs-bc-faq__trigger {
	width: 100%;
	text-align: left;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	background: #13141f;
	border: none;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

.rs-bc-faq__panel {
	display: none;
	padding: 0 1.5rem 1.25rem;
	background: #13141f;
	color: #d1d5db;
	font-size: 0.875rem;
}

.rs-bc-faq__panel.is-open {
	display: block;
}

.rs-bc-final__badge {
	display: inline-block;
	margin-bottom: 1.5rem;
	padding: 0.35rem 0.75rem;
	border-radius: 9999px;
	border: 1px solid rgba(245, 197, 66, 0.3);
	color: #f5c542;
	font-size: 0.625rem;
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: 0.15em;
}

.rs-bc-final__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.rs-bc-interest-form {
	max-width: 28rem;
	margin: 0 auto 1rem;
	display: grid;
	gap: 0.75rem;
	text-align: left;
}

.rs-bc-interest-form label span {
	display: block;
	font-size: 0.75rem;
	color: #9ca3af;
	margin-bottom: 0.25rem;
}

.rs-bc-interest-form input {
	width: 100%;
	padding: 0.625rem 0.75rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: #0e0f1a;
	color: #fff;
}

/* Interactive hero chat */
.rs-chat[data-rs-hero-chat] {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	height: 400px;
	overflow-y: auto;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

.rs-typing {
	align-self: flex-start;
	display: flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.75rem 1rem;
	border-radius: 1rem 1rem 1rem 0.25rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.rs-typing span {
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 9999px;
	background: #9ca3af;
	animation: rs-typing-pulse 1.2s ease-in-out infinite;
}

.rs-typing span:nth-child(2) {
	animation-delay: 0.2s;
}

.rs-typing span:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes rs-typing-pulse {
	0%,
	100% {
		opacity: 0.3;
	}
	50% {
		opacity: 1;
	}
}

.rs-flight-list {
	display: grid;
	gap: 0.5rem;
}

button.rs-flight-card {
	width: 100%;
	text-align: left;
	cursor: pointer;
	font: inherit;
	color: inherit;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 0.75rem;
	padding: 0.625rem 0.75rem;
}

button.rs-flight-card:disabled {
	cursor: default;
}

button.rs-flight-card--best {
	border-color: rgba(34, 197, 94, 0.3);
	background: rgba(34, 197, 94, 0.05);
}

button.rs-flight-card--best:hover {
	border-color: rgba(34, 197, 94, 0.5);
}

.rs-next-cards {
	display: flex;
	gap: 0.5rem;
}

.rs-next-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.25rem;
	padding: 0.75rem 0.875rem;
	border-radius: 0.75rem;
	cursor: pointer;
	font: inherit;
	text-align: left;
}

.rs-next-card strong {
	font-size: 0.75rem;
}

.rs-next-card span {
	font-size: 0.625rem;
	color: #9ca3af;
}

.rs-next-card--hotel {
	border: 1px solid rgba(167, 139, 250, 0.25);
	background: rgba(167, 139, 250, 0.08);
	color: #c4b5fd;
}

.rs-next-card--car {
	border: 1px solid rgba(56, 189, 248, 0.25);
	background: rgba(56, 189, 248, 0.08);
	color: #7dd3fc;
}

.rs-hood-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.375rem;
}

.rs-hood-btn {
	padding: 0.5rem 0.75rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.02);
	color: #d1d5db;
	font: inherit;
	font-size: 0.75rem;
	text-align: left;
	cursor: pointer;
}

.rs-hood-btn:hover {
	border-color: rgba(245, 197, 66, 0.3);
	color: #fff;
}

.rs-hotel-result {
	padding: 0.75rem;
	border-radius: 0.75rem;
	border: 1px solid rgba(245, 197, 66, 0.2);
	background: rgba(245, 197, 66, 0.05);
}

.rs-hotel-result__row {
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.25rem;
}

.rs-hotel-result__row span {
	color: #f5c542;
	font-weight: 700;
	font-size: 0.875rem;
}

.rs-hotel-result__stars {
	color: #f5c542;
	font-size: 0.625rem;
	letter-spacing: 0.05em;
	margin-bottom: 0.25rem;
}

.rs-hotel-result__dist {
	color: #9ca3af;
	font-size: 0.75rem;
}

.rs-car-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.5rem;
}

.rs-car-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.375rem;
	padding: 0.625rem;
	border-radius: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: #fff;
	cursor: pointer;
	font: inherit;
}

.rs-car-btn img {
	height: 2rem;
	width: auto;
	object-fit: contain;
}

.rs-car-btn span {
	font-size: 0.625rem;
	color: #6b7280;
	font-weight: 500;
}

.rs-car-confirm {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	border: 1px solid rgba(56, 189, 248, 0.25);
	background: rgba(56, 189, 248, 0.06);
}

.rs-car-confirm strong {
	display: block;
	font-size: 0.75rem;
	color: #bae6fd;
}

.rs-car-confirm p {
	margin: 0.125rem 0 0;
	font-size: 0.625rem;
	color: #9ca3af;
}

.rs-car-confirm__badge {
	margin-left: auto;
	padding: 0.125rem 0.5rem;
	border-radius: 9999px;
	background: rgba(16, 185, 129, 0.2);
	color: #6ee7b7;
	font-size: 0.625rem;
	font-weight: 600;
	white-space: nowrap;
}

.rs-hero-tabs {
	position: relative;
}

.rs-hero-tabs__progress {
	position: absolute;
	left: 0.5rem;
	right: 0.5rem;
	bottom: -0.25rem;
	height: 2px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 9999px;
	overflow: hidden;
}

.rs-hero-tabs__progress span {
	display: block;
	height: 100%;
	width: 0;
	background: rgba(245, 197, 66, 0.7);
}

@media (max-width: 640px) {
	.rs-car-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Build Challenge — beach WebGL + confetti */
.rs-bc-beach-col {
	position: relative;
	display: none;
}

@media (min-width: 1024px) {
	.rs-bc-beach-col {
		display: block;
	}
	.rs-bc-prize-ladder-mobile {
		display: none;
	}
}

.rs-bc-beach-frame {
	position: relative;
	aspect-ratio: 3 / 4;
	border-radius: 1.5rem;
	padding: 2px;
	background: linear-gradient(135deg, rgba(245, 197, 66, 0.7), rgba(255, 255, 255, 0.15), rgba(110, 168, 199, 0.45));
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.rs-bc-beach {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 1.375rem;
	overflow: hidden;
	background: #0e0f1a;
}

.rs-bc-beach__canvas,
.rs-bc-beach__fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rs-bc-beach__vignette {
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: 1.375rem;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
	background: linear-gradient(to bottom, rgba(14, 15, 26, 0.6) 0%, transparent 36%);
}

.rs-bc-prize-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.125rem;
	padding: 0.625rem 0.875rem;
	border-radius: 0.75rem;
	border: 1px solid rgba(245, 197, 66, 0.35);
	background: rgba(14, 15, 26, 0.85);
	backdrop-filter: blur(10px);
	color: #fff;
	cursor: pointer;
	font: inherit;
	text-align: left;
}

.rs-bc-prize-badge span {
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #f5c542;
	font-weight: 700;
}

.rs-bc-prize-badge strong {
	font-size: 1rem;
}

.rs-bc-prize-banner {
	position: absolute;
	top: 1rem;
	left: 1.25rem;
	right: 1.25rem;
	z-index: 3;
	padding: 0.875rem;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(14, 15, 26, 0.9);
	backdrop-filter: blur(12px);
	animation: rs-bc-float 7s ease-in-out infinite;
}

@keyframes rs-bc-float {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}
	33% {
		transform: translateY(-9px) rotate(0.6deg);
	}
	66% {
		transform: translateY(-4px) rotate(-0.6deg);
	}
}

.rs-bc-prize-banner__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.75rem;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: #9ca3af;
	font-weight: 700;
}

.rs-bc-prize-banner__close {
	border: 0;
	background: transparent;
	color: #9ca3af;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
}

.rs-bc-prize-banner__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.625rem;
}

.rs-bc-prize-banner__list li {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.625rem;
	align-items: center;
}

.rs-bc-prize-banner__list .rank {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	border-radius: 9999px;
	background: color-mix(in srgb, var(--c) 18%, transparent);
	color: var(--c);
	font-size: 0.6875rem;
	font-weight: 800;
}

.rs-bc-prize-banner__list strong {
	display: block;
	font-size: 0.8125rem;
	color: #fff;
}

.rs-bc-prize-banner__list small {
	color: #9ca3af;
	font-size: 0.6875rem;
}

.rs-bc-prize-banner__list em {
	font-style: normal;
	font-weight: 800;
	color: #f5c542;
	font-size: 0.8125rem;
}

.rs-bc-prize-ladder-mobile {
	margin-top: 1.5rem;
	padding: 1rem;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: #13141f;
}

.rs-bc-hero-micro {
	margin-top: 1rem;
	font-size: 0.75rem;
	color: #6b7280;
}

.rs-bc-top-prize {
	position: relative;
	overflow: hidden;
}

.rs-bc-top-prize__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 768px) {
	.rs-bc-top-prize__grid {
		grid-template-columns: 1fr auto;
	}
}

.rs-bc-resort-frame {
	width: min(100%, 28rem);
	border-radius: 1.5rem;
	padding: 2px;
	background: linear-gradient(135deg, rgba(245, 197, 66, 0.7), rgba(255, 255, 255, 0.15), rgba(110, 168, 199, 0.45));
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.rs-bc-resort-frame img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 1.375rem;
}

.rs-bc-confetti {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

.rs-bc-confetti__piece {
	position: absolute;
	top: -8%;
	border-radius: 2px;
	animation-name: rs-bc-confetti-fall;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@keyframes rs-bc-confetti-fall {
	0% {
		opacity: 0;
		top: -8%;
		transform: translateX(0) rotate(var(--rs-confetti-rot, 0deg));
	}
	10% {
		opacity: 1;
	}
	55% {
		opacity: 1;
		top: 38%;
		transform: translateX(var(--rs-confetti-drift, 0%)) rotate(calc(var(--rs-confetti-rot, 0deg) + 180deg));
	}
	100% {
		opacity: 0;
		top: 58%;
		transform: translateX(var(--rs-confetti-drift, 0%)) rotate(calc(var(--rs-confetti-rot, 0deg) + 360deg));
	}
}

.rs-bc-confetti-burst {
	position: absolute;
	inset: 0;
	z-index: 20;
	pointer-events: none;
}

.rs-bc-confetti-burst__piece {
	position: absolute;
	left: 50%;
	top: 50%;
	border-radius: 2px;
	animation-name: rs-bc-confetti-burst;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

@keyframes rs-bc-confetti-burst {
	0% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(0) rotate(0deg);
	}
	40% {
		opacity: 1;
		transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1) rotate(var(--rot));
	}
	100% {
		opacity: 0;
		transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy) + 90px)) scale(0.85) rotate(var(--rot));
	}
}

@media (prefers-reduced-motion: reduce) {
	.rs-bc-prize-banner,
	.rs-bc-confetti__piece,
	.rs-bc-confetti-burst__piece {
		animation: none !important;
	}
}

/* —— Build Challenge Winners (/event/build-challenge-winners) —— */

.rs-lp--winners {
	background: #0a0b14;
	color: #e5e7eb;
}

.rs-winners-hero {
	position: relative;
	overflow: hidden;
	background: #0e0f1a;
	min-height: 70vh;
	display: flex;
	align-items: center;
	padding: calc(var(--rs-announcement-offset, 0px) + 9rem) 1.5rem 5rem;
}

.rs-winners-hero__orbs,
.rs-winners-showcase__orbs,
.rs-winners-judging__orbs {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 50% 40% at 15% 20%, rgba(79, 156, 249, 0.08), transparent),
		radial-gradient(ellipse 45% 35% at 85% 70%, rgba(245, 197, 66, 0.06), transparent);
}

.rs-winners-hero__glow {
	position: absolute;
	inset-inline: 0;
	top: 33%;
	height: 420px;
	pointer-events: none;
	background: radial-gradient(ellipse at center, rgba(245, 197, 66, 0.12) 0%, transparent 55%);
}

.rs-winners-confetti {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 2;
}

.rs-winners-confetti-burst-wrap {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 3;
}

.rs-winners-confetti__piece {
	position: absolute;
	top: -6%;
	border-radius: 2px;
	animation: rs-winners-confetti-drift linear infinite;
}

@keyframes rs-winners-confetti-drift {
	0% {
		opacity: 0;
		top: -6%;
		transform: translateX(0) rotate(var(--rs-winners-rot, 0deg));
	}
	12% {
		opacity: 0.9;
	}
	55% {
		opacity: 0.9;
		top: 55%;
		transform: translateX(var(--rs-winners-drift, 0)) rotate(calc(var(--rs-winners-rot, 0deg) + 180deg));
	}
	100% {
		opacity: 0;
		top: 85%;
		transform: translateX(var(--rs-winners-drift, 0)) rotate(calc(var(--rs-winners-rot, 0deg) + 360deg));
	}
}

.rs-winners-confetti-burst {
	position: absolute;
	inset: 0;
}

.rs-winners-confetti-burst__piece {
	position: absolute;
	left: 50%;
	top: 42%;
	border-radius: 2px;
	animation: rs-winners-confetti-burst ease-out forwards;
}

@keyframes rs-winners-confetti-burst {
	0% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(0) rotate(0deg);
	}
	45% {
		opacity: 1;
		transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1) rotate(var(--rot));
	}
	100% {
		opacity: 0;
		transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy) + 120px)) scale(0.85) rotate(var(--rot));
	}
}

.rs-winners-hero__inner {
	position: relative;
	z-index: 10;
	max-width: 64rem;
	margin: 0 auto;
	text-align: center;
}

.rs-winners-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 1rem;
	border-radius: 999px;
	background: rgba(245, 197, 66, 0.08);
	border: 1px solid rgba(245, 197, 66, 0.25);
	font-family: var(--font-mono, ui-monospace, monospace);
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: #f5c542;
	margin-bottom: 2rem;
}

.rs-winners-hero__badge-dot {
	position: relative;
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 999px;
	background: #f5c542;
}

.rs-winners-hero__title {
	font-weight: 900;
	color: #fff;
	line-height: 1.05;
	margin: 0 0 1.5rem;
	letter-spacing: -0.02em;
}

.rs-winners-hero__handwrite {
	display: block;
	margin-bottom: 0.5rem;
	font-family: var(--font-caveat, "Caveat", cursive);
	font-size: clamp(2.75rem, 5vw, 3.25rem);
	font-weight: 700;
}

.rs-winners-hero__headline {
	display: block;
	font-size: clamp(3rem, 8vw, 5rem);
	line-height: 0.98;
}

.rs-winners-hero__sub {
	color: #9ca3af;
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.6;
	max-width: 42rem;
	margin: 0 auto 2rem;
	font-weight: 300;
}

.rs-winners-hero__partner {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 2.5rem;
}

.rs-winners-hero__partner-label {
	font-weight: 700;
	font-size: 0.875rem;
	color: #fff;
	text-align: left;
}

.rs-winners-hero__partner-logo {
	height: 1.75rem;
	width: auto;
}

.rs-winners-hero__podium {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.rs-winners-hero__podium-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.875rem 0.5rem 0.625rem;
	border-radius: 999px;
	background: #13141f;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	transition: border-color 0.2s;
}

.rs-winners-hero__podium-link:hover {
	border-color: rgba(255, 255, 255, 0.25);
	color: #fff;
}

.rs-winners-hero__podium-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 0.5rem;
	background: color-mix(in srgb, var(--c) 12%, transparent);
	color: var(--c);
}

.rs-winners-showcase {
	position: relative;
	padding: 5rem 1.5rem 7rem;
	background: #0a0b14;
	overflow: hidden;
}

.rs-winners-showcase__inner {
	position: relative;
	z-index: 1;
	max-width: 80rem;
	margin: 0 auto;
}

.rs-winners-showcase__head {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 3rem;
}

.rs-winners-showcase__eyebrow {
	display: block;
	color: #f5c542;
	font-family: var(--font-mono, ui-monospace, monospace);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.rs-winners-showcase__head h2 {
	font-size: clamp(1.875rem, 4vw, 3rem);
	font-weight: 900;
	color: #fff;
	line-height: 1.05;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}

.rs-winners-showcase__head p {
	color: #9ca3af;
	margin: 0;
}

.rs-winners-card {
	position: relative;
	scroll-margin-top: 7rem;
}

.rs-winners-card--first {
	background: linear-gradient(135deg, #1a1b2a, #13141f);
	border: 1px solid rgba(245, 197, 66, 0.4);
	border-radius: 1.5rem;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(245, 197, 66, 0.1);
}

@media (min-width: 768px) {
	.rs-winners-card--first {
		padding: 2.5rem;
	}
}

.rs-winners-card__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(ellipse at 75% 20%, rgba(245, 197, 66, 0.16) 0%, transparent 55%);
}

.rs-winners-card__trophy-bg {
	position: absolute;
	right: -4rem;
	top: -2.5rem;
	pointer-events: none;
	color: rgba(245, 197, 66, 0.06);
}

.rs-winners-card__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.rs-winners-card__grid {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 2.5rem;
		align-items: start;
	}
}

.rs-winners-card__rank-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 0.875rem;
	border-radius: 999px;
	background: #f5c542;
	color: #0e0f1a;
	font-size: 0.6875rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin: 0 0 1.5rem;
	box-shadow: 0 10px 25px rgba(245, 197, 66, 0.3);
}

.rs-winners-card__project {
	font-size: clamp(2.25rem, 4vw, 3rem);
	font-weight: 900;
	color: #fff;
	line-height: 1;
	margin: 0 0 0.75rem;
	letter-spacing: -0.02em;
}

.rs-winners-card__project--sm {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.rs-winners-card__tagline {
	color: #f5c542;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 1.5rem;
}

.rs-winners-card__tagline--sm {
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

.rs-winners-maker {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.rs-winners-maker--sm {
	margin-bottom: 1rem;
}

.rs-winners-maker__avatar {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: color-mix(in srgb, var(--tier) 11%, transparent);
}

.rs-winners-maker__avatar--sm {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.75rem;
}

.rs-winners-maker__avatar span {
	font-size: 1.25rem;
	font-weight: 900;
	color: var(--tier);
}

.rs-winners-maker__name {
	margin: 0;
	font-weight: 900;
	font-size: 1.125rem;
	color: #fff;
	line-height: 1.2;
}

.rs-winners-maker__name--sm {
	font-size: 0.875rem;
	font-weight: 700;
}

.rs-winners-maker__title {
	margin: 0.125rem 0 0;
	font-size: 0.875rem;
	color: #6b7280;
}

.rs-winners-card__summary-label {
	font-family: var(--font-mono, ui-monospace, monospace);
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: #6b7280;
	margin: 0 0 0.5rem;
}

.rs-winners-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 1.5rem 0;
}

.rs-winners-tags--sm {
	gap: 0.375rem;
	margin: 1rem 0;
}

.rs-winners-tags__item {
	padding: 0.25rem 0.625rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-family: var(--font-mono, ui-monospace, monospace);
	font-size: 0.6875rem;
	font-weight: 600;
	color: #9ca3af;
}

.rs-winners-tags--sm .rs-winners-tags__item {
	font-size: 0.625rem;
	padding: 0.125rem 0.5rem;
	color: #6b7280;
}

.rs-winners-card__aside {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.rs-winners-runners {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.rs-winners-runners {
		grid-template-columns: 1fr 1fr;
	}
}

.rs-winners-card--runner {
	background: #13141f;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: border-color 0.2s;
}

.rs-winners-card--runner:hover {
	border-color: rgba(255, 255, 255, 0.2);
}

.rs-winners-card__rank-watermark {
	position: absolute;
	right: -1rem;
	bottom: -1.5rem;
	pointer-events: none;
	opacity: 0.35;
}

.rs-winners-card__runner-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.rs-winners-card__runner-rank {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
}

.rs-winners-card__runner-rank p {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 900;
	color: #fff;
}

.rs-winners-card__runner-label {
	font-family: var(--font-mono, ui-monospace, monospace);
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	white-space: nowrap;
}

.rs-winners-card__runner-foot {
	margin-top: auto;
	padding-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.rs-winners-video {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	overflow: hidden;
	background: #0a0b14;
	cursor: pointer;
	text-align: center;
}

.rs-winners-video--portrait {
	aspect-ratio: 9 / 16;
	max-height: 420px;
	margin-inline: auto;
}

.rs-winners-video--landscape {
	aspect-ratio: 16 / 9;
}

.rs-winners-video__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.rs-winners-video:hover .rs-winners-video__poster {
	opacity: 1;
}

.rs-winners-video__placeholder {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 30% 20%, color-mix(in srgb, var(--tier) 20%, transparent), transparent 50%),
		linear-gradient(145deg, #13141f, #0a0b14);
}

.rs-winners-video__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 11, 20, 0.8), rgba(10, 11, 20, 0.25) 40%, rgba(10, 11, 20, 0.3));
	pointer-events: none;
}

.rs-winners-video__label {
	position: relative;
	z-index: 1;
	display: block;
	margin-top: 25%;
	font-family: var(--font-mono, ui-monospace, monospace);
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
}

.rs-winners-video--landscape .rs-winners-video__label {
	margin-top: 0;
	padding-top: 1.5rem;
}

.rs-winners-video__name {
	position: relative;
	z-index: 1;
	display: block;
	color: #fff;
	font-weight: 900;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	margin-top: 0.75rem;
}

.rs-winners-video__hint {
	position: relative;
	z-index: 1;
	display: block;
	color: #d1d5db;
	font-size: 0.75rem;
	margin-top: 0.5rem;
}

.rs-winners-video__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	color: #0e0f1a;
}

.rs-winners-video__play span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 999px;
	background: var(--tier);
	box-shadow: 0 12px 40px color-mix(in srgb, var(--tier) 33%, transparent);
	transition: transform 0.3s;
}

.rs-winners-video:hover .rs-winners-video__play span {
	transform: scale(1.1);
}

.rs-winners-video__rank {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 2;
	padding: 0.25rem 0.625rem;
	border-radius: 999px;
	font-family: var(--font-mono, ui-monospace, monospace);
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: color-mix(in srgb, var(--tier) 13%, transparent);
	color: var(--tier);
	border: 1px solid color-mix(in srgb, var(--tier) 27%, transparent);
}

.rs-winners-prize {
	border-radius: 0.75rem;
	border: 1px solid color-mix(in srgb, var(--tier) 20%, transparent);
	background: linear-gradient(135deg, color-mix(in srgb, var(--tier) 7%, transparent), transparent 70%);
	padding: 1.25rem;
}

.rs-winners-prize--compact {
	padding: 1rem;
}

.rs-winners-prize__eyebrow {
	font-family: var(--font-mono, ui-monospace, monospace);
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: #6b7280;
	margin: 0 0 0.25rem;
}

.rs-winners-prize__value {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 900;
	line-height: 1;
	margin: 0 0 0.25rem;
	color: var(--tier);
}

.rs-winners-prize--compact .rs-winners-prize__value {
	font-size: 1.5rem;
}

.rs-winners-prize__title {
	color: #fff;
	font-weight: 700;
	font-size: 0.875rem;
	margin: 0 0 0.5rem;
}

.rs-winners-prize__extras {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rs-winners-prize__extras li {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.75rem;
	color: #9ca3af;
	margin-top: 0.25rem;
}

.rs-winners-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 1rem 0 1.5rem;
}

.rs-winners-socials__link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.375rem 0.75rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.75rem;
	font-weight: 600;
	color: #d1d5db;
	text-decoration: none;
	transition: color 0.2s, border-color 0.2s;
}

.rs-winners-socials__link:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.25);
}

.rs-winners-socials__link--pending {
	color: #4b5563;
	cursor: default;
	border-color: rgba(255, 255, 255, 0.08);
}

.rs-winners-socials__soon {
	font-family: var(--font-mono, ui-monospace, monospace);
	font-size: 0.5625rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.rs-winners-expand__teaser,
.rs-winners-expand__remainder,
.rs-winners-expand__bio {
	color: #9ca3af;
	line-height: 1.6;
	font-size: 0.9375rem;
	margin: 0;
}

.rs-winners-expand__label {
	font-family: var(--font-mono, ui-monospace, monospace);
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin: 0 0 0.5rem;
}

.rs-winners-expand__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rs-winners-expand__list li {
	display: flex;
	gap: 0.5rem;
	color: #9ca3af;
	font-size: 0.875rem;
	line-height: 1.5;
	margin-bottom: 0.5rem;
}

.rs-winners-expand__list li span:first-child {
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 999px;
	margin-top: 0.5rem;
	flex-shrink: 0;
}

.rs-winners-expand__panel {
	padding-top: 0.75rem;
}

.rs-winners-expand__panel > * + * {
	margin-top: 1.25rem;
}

.rs-winners-expand__toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	margin-top: 0.5rem;
	padding: 0;
	border: 0;
	background: none;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
}

.rs-winners-expand__toggle.is-open svg {
	transform: rotate(180deg);
}

.rs-winners-expand__toggle svg {
	transition: transform 0.3s;
}

.rs-winners-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.rs-winners-actions__product {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	border-radius: 0.75rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: #0e0f1a;
	background: linear-gradient(135deg, #f5c542, #f0b429);
	box-shadow: 0 10px 25px rgba(245, 197, 66, 0.2);
	text-decoration: none;
	transition: transform 0.2s;
}

.rs-winners-actions__product:hover {
	transform: scale(1.05);
	color: #0e0f1a;
}

.rs-winners-actions__github {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #d1d5db;
	text-decoration: none;
	transition: color 0.2s;
}

.rs-winners-actions__github:hover {
	color: #fff;
}

.rs-winners-judging {
	position: relative;
	padding: 5rem 1.5rem;
	background: #0e0f1a;
	overflow: hidden;
	text-align: center;
}

.rs-winners-judging__inner {
	position: relative;
	z-index: 1;
	max-width: 56rem;
	margin: 0 auto;
}

.rs-winners-judging__eyebrow {
	display: block;
	color: #f5c542;
	font-family: var(--font-mono, ui-monospace, monospace);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.rs-winners-judging__inner h2 {
	font-size: clamp(1.875rem, 3vw, 2.5rem);
	font-weight: 900;
	color: #fff;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}

.rs-winners-judging__inner > p {
	color: #9ca3af;
	max-width: 42rem;
	margin: 0 auto 2rem;
}

.rs-winners-judging__chips {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.rs-winners-judging__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.875rem;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--chip) 20%, transparent);
	background: color-mix(in srgb, var(--chip) 6%, transparent);
	color: var(--chip);
	font-family: var(--font-mono, ui-monospace, monospace);
	font-size: 0.75rem;
	font-weight: 600;
	white-space: nowrap;
}

.rs-winners-judging__pts {
	opacity: 0.6;
}

.rs-winners-cta {
	position: relative;
	padding: 7rem 1.5rem;
	background: #0a0b14;
	overflow: hidden;
	text-align: center;
}

.rs-winners-cta__glow {
	position: absolute;
	inset-inline: 0;
	top: 50%;
	height: 500px;
	transform: translateY(-50%);
	pointer-events: none;
	background: radial-gradient(ellipse at center, rgba(245, 197, 66, 0.1) 0%, transparent 60%);
}

.rs-winners-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 48rem;
	margin: 0 auto;
}

.rs-winners-cta__inner h2 {
	font-size: clamp(2.25rem, 4vw, 3rem);
	font-weight: 900;
	color: #fff;
	line-height: 1.05;
	margin: 0 0 1.25rem;
	letter-spacing: -0.02em;
}

.rs-winners-cta__inner > p {
	color: #9ca3af;
	max-width: 36rem;
	margin: 0 auto 2rem;
}

.rs-winners-cta__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

@media (min-width: 640px) {
	.rs-winners-cta__actions {
		flex-direction: row;
	}
}

.rs-winners-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.rs-winners-lightbox[hidden] {
	display: none !important;
}

.rs-winners-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(4px);
}

.rs-winners-lightbox__panel {
	position: relative;
	width: 100%;
	max-width: 56rem;
	border-radius: 1rem;
	overflow: hidden;
	background: #13141f;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.rs-winners-lightbox.is-portrait .rs-winners-lightbox__panel {
	max-width: min(100%, 420px);
	max-height: min(92vh, 780px);
}

.rs-winners-lightbox__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	width: 2.25rem;
	height: 2.25rem;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
}

.rs-winners-lightbox__close:hover {
	background: rgba(0, 0, 0, 0.7);
}

.rs-winners-lightbox__frame {
	background: #000;
	aspect-ratio: 16 / 9;
}

.rs-winners-lightbox.is-portrait .rs-winners-lightbox__frame {
	aspect-ratio: 9 / 16;
	max-height: min(92vh, 780px);
}

.rs-winners-lightbox__iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	min-height: 240px;
}

.rs-winners-lightbox.is-portrait .rs-winners-lightbox__iframe {
	min-height: 480px;
}

.rs-winners-lightbox__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 240px;
	padding: 2rem;
	color: #9ca3af;
	text-align: center;
}

@media (prefers-reduced-motion: reduce) {
	.rs-winners-confetti__piece,
	.rs-winners-confetti-burst__piece {
		animation: none !important;
	}
}



/* Elementor pages */
.rs-elementor-page { min-height: 40vh; }
.rs-elementor-page--canvas { min-height: 100vh; }


/* Elementor */
.rs-elementor-page { width: 100%; }
.rs-elementor-block { width: 100%; }
.rs-elementor-block--placeholder {
	padding: 1.5rem;
	border: 1px dashed rgba(245, 197, 66, 0.5);
	color: #f5c542;
	display: flex;
	gap: 0.75rem;
	align-items: center;
	justify-content: center;
	background: rgba(245, 197, 66, 0.06);
}
.elementor-widget-routestack_block .rs-elementor-block > section:first-child,
.elementor-widget-routestack_block .rs-elementor-block > div:first-child {
	margin-top: 0;
}


/* Elementor empty-state helper */
body.elementor-editor-active .rs-elementor-page:empty::before,
body.elementor-editor-active .rs-elementor-page > p:only-child::before {
	content: "Search widgets for RS: or RouteStack — or open Appearance → RouteStack Elementor → Enable Elementor editing";
	display: block;
	padding: 2rem;
	text-align: center;
	color: #f5c542;
	border: 1px dashed rgba(245,197,66,.4);
	margin: 1rem;
}

/* Droppable RouteStack embeds */
.rs-droppable-embed {
	width: 100%;
}

.rs-droppable-embed > section {
	margin-top: 0;
	margin-bottom: 0;
}

.rs-embed-panel {
	max-width: 42rem;
	margin: 0 auto;
}

.rs-droppable-embed--hero-chat .rs-chat {
	min-height: 31rem;
}

.rs-droppable-embed--earn-chart .rs-commission-chart {
	padding: 1rem;
}

.rs-droppable-embed--bc-beach .rs-bc-beach-col {
	max-width: 34rem;
	margin: 0 auto;
}

.rs-embed-warning {
	padding: 1rem;
	border: 1px dashed rgba(245, 197, 66, 0.55);
	border-radius: 0.75rem;
	color: #f5c542;
	background: rgba(245, 197, 66, 0.08);
}

.elementor-widget[class*="elementor-widget-rs_embed_"] {
	width: 100%;
}
