/**
 * ResponseReady™ — Flagship landing (Sprint 17)
 * Enterprise / SaaS design language. Uses design tokens only — not main.css.
 */

.rr-page {
	--rr-bg: #070707;
	--rr-surface: rgba(255, 255, 255, 0.03);
	--rr-surface-raised: rgba(255, 255, 255, 0.045);
	--rr-border: rgba(185, 155, 104, 0.14);
	--rr-border-strong: rgba(185, 155, 104, 0.28);
	--rr-text: rgba(243, 239, 231, 0.92);
	--rr-text-muted: rgba(243, 239, 231, 0.62);
	--rr-text-faint: rgba(243, 239, 231, 0.42);
	--rr-accent: var(--bronze);
	--rr-accent-soft: rgba(185, 155, 104, 0.12);
	--rr-max: 72rem;
	--rr-narrow: 40rem;
	--rr-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	--rr-mono: ui-monospace, "SF Mono", "Cascadia Code", monospace;
	--rr-body: 1.0625rem;
	--rr-body-lh: 1.65;
	--rr-section-y: clamp(5rem, 12vw, 8.5rem);
	--rr-gutter: clamp(1.25rem, 4vw, 2.5rem);

	min-height: 100vh;
	font-family: var(--rr-font);
	font-size: var(--rr-body);
	line-height: var(--rr-body-lh);
	font-weight: 400;
	color: var(--rr-text);
	background: var(--rr-bg);
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}

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

.rr-wrap {
	width: min(100% - var(--rr-gutter) * 2, var(--rr-max));
	margin-inline: auto;
}

.rr-wrap--narrow {
	width: min(100% - var(--rr-gutter) * 2, var(--rr-narrow));
}

/* —— Grid atmosphere —— */

.rr-grid-bg {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(to bottom, rgba(7, 7, 7, 0.7) 0%, transparent 28%, transparent 72%, rgba(7, 7, 7, 0.85) 100%),
		linear-gradient(rgba(185, 155, 104, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(185, 155, 104, 0.035) 1px, transparent 1px);
	background-size: 100% 100%, 64px 64px, 64px 64px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 75%);
}

.rr-page > :not(.rr-grid-bg) {
	position: relative;
	z-index: 1;
}

/* —— Navigation —— */

.rr-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	border-bottom: 1px solid transparent;
	transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.rr-nav.is-scrolled {
	background: rgba(7, 7, 7, 0.72);
	border-bottom-color: var(--rr-border);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.rr-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--spacing-4);
	min-height: 4rem;
	padding-block: 0.75rem;
}

.rr-nav__brand {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	text-decoration: none;
	color: inherit;
}

.rr-nav__brand-name {
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--rr-text);
}

.rr-nav__brand-name span {
	color: var(--rr-accent);
}

.rr-nav__brand-by {
	font-family: var(--rr-mono);
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rr-text-faint);
}

.rr-nav__links {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.5vw, 2rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.rr-nav__links a {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: -0.01em;
	text-decoration: none;
	color: var(--rr-text-muted);
	transition: color 0.2s ease;
}

.rr-nav__links a:hover {
	color: var(--rr-text);
}

.rr-nav__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5625rem 1.125rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	text-decoration: none;
	color: var(--black);
	background: var(--rr-accent);
	border-radius: 999px;
	transition: background 0.2s ease, transform 0.2s ease;
}

.rr-nav__cta:hover {
	background: #c4a574;
	transform: translateY(-1px);
}

.rr-nav__toggle {
	display: none;
	padding: 0.5rem;
	border: none;
	background: none;
	color: var(--rr-text);
	cursor: pointer;
}

/* —— Buttons —— */

.rr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.625rem;
	font-family: var(--rr-font);
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	text-decoration: none;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.rr-btn--primary {
	color: var(--black);
	background: var(--rr-accent);
}

.rr-btn--primary:hover {
	background: #c4a574;
	transform: translateY(-1px);
}

.rr-btn--ghost {
	color: var(--rr-text);
	background: transparent;
	border-color: var(--rr-border-strong);
}

.rr-btn--ghost:hover {
	border-color: var(--rr-accent);
	background: var(--rr-accent-soft);
}

.rr-link {
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
	color: var(--rr-accent);
	transition: color 0.2s ease;
}

.rr-link:hover {
	color: var(--rr-text);
}

/* —— Typography —— */

.rr-eyebrow {
	margin: 0 0 1rem;
	font-family: var(--rr-mono);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rr-accent);
}

.rr-display {
	margin: 0;
	font-size: clamp(2.5rem, 6.5vw, 4.25rem);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.035em;
	color: var(--rr-text);
}

.rr-display em {
	font-style: normal;
	color: var(--rr-accent);
}

.rr-hero .rr-display {
	text-shadow: 0 4px 48px rgba(0, 0, 0, 0.35);
}

.rr-lede {
	margin: 0;
	max-width: 34rem;
	font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
	line-height: 1.6;
	font-weight: 400;
	color: var(--rr-text-muted);
}

.rr-section-title {
	margin: 0 0 1rem;
	font-size: clamp(1.75rem, 3.5vw, 2.625rem);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: var(--rr-text);
}

.rr-section-lede {
	margin: 0;
	max-width: 38rem;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--rr-text-muted);
}

/* —— Hero —— */

.rr-hero {
	padding: calc(4rem + 5rem) 0 var(--rr-section-y);
	position: relative;
}

.rr-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	top: -20%;
	background: radial-gradient(ellipse 70% 50% at 75% 35%, rgba(185, 155, 104, 0.09), transparent 65%);
	pointer-events: none;
}

.rr-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}

.rr-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.5rem;
}

.rr-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.25rem;
}

.rr-hero__visual {
	position: relative;
}

.rr-hero__glow {
	position: absolute;
	inset: -12% -8%;
	z-index: 0;
	background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(185, 155, 104, 0.14), transparent 70%);
	filter: blur(24px);
	pointer-events: none;
	animation: rr-glow-pulse 6s ease-in-out infinite;
}

@keyframes rr-glow-pulse {
	0%, 100% { opacity: 0.7; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.03); }
}

.rr-hero__frame {
	position: relative;
	z-index: 1;
	border: 1px solid var(--rr-border);
	border-radius: 1rem;
	overflow: hidden;
	background: rgba(9, 9, 9, 0.75);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.04) inset,
		0 4px 24px rgba(0, 0, 0, 0.35),
		0 32px 64px rgba(0, 0, 0, 0.45);
}

.rr-hero__frame-bar {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid var(--rr-border);
	background: rgba(255, 255, 255, 0.02);
}

.rr-hero__frame-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: rgba(185, 155, 104, 0.35);
}

.rr-hero__frame-label {
	margin-left: auto;
	font-family: var(--rr-mono);
	font-size: 0.625rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rr-text-faint);
}

.rr-hero__frame-body {
	padding: 1.25rem;
}

/* —— Enterprise app shell (hero) —— */

.rr-app__layout {
	display: grid;
	grid-template-columns: 5.5rem 1fr;
	min-height: 18rem;
}

.rr-app__sidebar {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1rem 0.625rem;
	border-right: 1px solid var(--rr-border);
	background: rgba(0, 0, 0, 0.35);
}

.rr-app__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	margin-inline: auto;
	font-family: var(--rr-mono);
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--black);
	background: var(--rr-accent);
	border-radius: 0.375rem;
}

.rr-app__nav {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.rr-app__nav-item {
	padding: 0.375rem 0.5rem;
	font-size: 0.5625rem;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--rr-text-faint);
	border-radius: 0.375rem;
}

.rr-app__nav-item.is-active {
	color: var(--rr-text);
	background: var(--rr-accent-soft);
}

.rr-app__main {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.rr-app__topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.625rem 1rem;
	border-bottom: 1px solid var(--rr-border);
	background: rgba(255, 255, 255, 0.015);
}

.rr-app__facility {
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--rr-text-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.rr-app__live {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-family: var(--rr-mono);
	font-size: 0.5625rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rr-accent);
}

.rr-app__live-dot {
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 50%;
	background: var(--rr-accent);
	box-shadow: 0 0 8px rgba(185, 155, 104, 0.6);
	animation: rr-live-pulse 2s ease-in-out infinite;
}

@keyframes rr-live-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.45; }
}

.rr-app__body {
	padding: 1rem;
}

.rr-app__body .rr-status-card {
	padding: 0.75rem;
}

.rr-app__body .rr-status-card__value {
	font-size: 0.9375rem;
}

.rr-app__body .rr-status-grid {
	gap: 0.5rem;
}

.rr-app__split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-top: 0.75rem;
}

.rr-app__map {
	position: relative;
	min-height: 5.5rem;
	padding: 0.625rem;
	border: 1px solid var(--rr-border);
	border-radius: 0.5rem;
	background:
		linear-gradient(rgba(185, 155, 104, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(185, 155, 104, 0.04) 1px, transparent 1px),
		rgba(255, 255, 255, 0.02);
	background-size: 12px 12px, 12px 12px, 100% 100%;
}

.rr-app__map-label {
	display: block;
	margin-bottom: 0.375rem;
	font-family: var(--rr-mono);
	font-size: 0.5625rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rr-text-faint);
}

.rr-app__map-grid {
	position: relative;
	height: 3.5rem;
}

.rr-app__map-pin {
	position: absolute;
	width: 0.625rem;
	height: 0.625rem;
	border-radius: 50%;
	border: 2px solid rgba(7, 7, 7, 0.8);
}

.rr-app__map-pin--water {
	top: 25%;
	left: 30%;
	background: #5b9bd5;
}

.rr-app__map-pin--elec {
	top: 55%;
	left: 62%;
	background: #e8b84a;
}

.rr-app__map-pin--hvac {
	top: 35%;
	left: 78%;
	background: #7cb87c;
}

.rr-app__feed {
	padding: 0.625rem;
	border: 1px solid var(--rr-border);
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.02);
}

.rr-app__feed-title {
	margin: 0 0 0.5rem;
	font-family: var(--rr-mono);
	font-size: 0.5625rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rr-text-faint);
}

.rr-app__feed-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.rr-app__feed-list li {
	display: flex;
	gap: 0.5rem;
	padding: 0.25rem 0;
	font-size: 0.625rem;
	line-height: 1.4;
	color: var(--rr-text-muted);
	border-bottom: 1px solid rgba(185, 155, 104, 0.08);
}

.rr-app__feed-list li:last-child {
	border-bottom: none;
}

.rr-app__feed-time {
	flex-shrink: 0;
	font-family: var(--rr-mono);
	font-size: 0.5625rem;
	color: var(--rr-text-faint);
}

.rr-status-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

.rr-status-card {
	padding: 1rem;
	border: 1px solid var(--rr-border);
	border-radius: 0.625rem;
	background: var(--rr-surface);
}

.rr-status-card__label {
	display: block;
	margin-bottom: 0.375rem;
	font-family: var(--rr-mono);
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rr-text-faint);
}

.rr-status-card__value {
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--rr-text);
}

.rr-status-card__value--ready {
	color: var(--rr-accent);
}

.rr-status-card--wide {
	grid-column: 1 / -1;
}

.rr-progress {
	height: 0.25rem;
	margin-top: 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	overflow: hidden;
}

.rr-progress__fill {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--bronze-dark), var(--rr-accent));
}

/* —— Metrics —— */

.rr-metrics {
	padding-bottom: var(--rr-section-y);
	border-bottom: 1px solid var(--rr-border);
}

.rr-metrics__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.5rem, 4vw, 3rem);
}

.rr-metric {
	padding-left: 1rem;
	border-left: 2px solid var(--rr-accent);
}

.rr-metric__value {
	margin: 0 0 0.375rem;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	color: var(--rr-text);
}

.rr-metric__label {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--rr-text-muted);
}

/* —— Problem —— */

.rr-problem {
	padding-block: var(--rr-section-y);
	background: var(--ivory);
	color: rgba(9, 9, 9, 0.88);
}

.rr-problem .rr-section-title {
	color: var(--black);
}

.rr-problem .rr-section-lede {
	color: rgba(9, 9, 9, 0.68);
}

.rr-problem__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	margin-top: clamp(2.5rem, 5vw, 4rem);
}

.rr-problem__col p {
	margin: 0 0 1.25rem;
	font-size: 1.0625rem;
	line-height: 1.7;
	color: rgba(9, 9, 9, 0.72);
}

.rr-problem__col p:last-child {
	margin-bottom: 0;
}

/* —— Modules —— */

.rr-modules {
	padding-block: var(--rr-section-y);
}

.rr-modules__header {
	max-width: 42rem;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.rr-bento {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1rem;
}

.rr-module {
	grid-column: span 4;
	display: flex;
	flex-direction: column;
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
	border: 1px solid var(--rr-border);
	border-radius: 0.875rem;
	background: var(--rr-surface);
	transition: border-color 0.25s ease, background 0.25s ease, transform 0.3s ease;
}

.rr-module:hover {
	border-color: var(--rr-border-strong);
	background: var(--rr-surface-raised);
	transform: translateY(-2px);
}

.rr-module--wide {
	grid-column: span 6;
}

.rr-module__index {
	margin: 0 0 1rem;
	font-family: var(--rr-mono);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: var(--rr-accent);
}

.rr-module h3 {
	margin: 0 0 0.75rem;
	font-size: 1.0625rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.3;
	color: var(--rr-text);
}

.rr-module p {
	margin: 0;
	flex-grow: 1;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--rr-text-muted);
}

.rr-module__slot {
	min-height: 0.125rem;
	margin-top: 1.25rem;
	border-radius: 0.375rem;
	background: rgba(185, 155, 104, 0.06);
	overflow: hidden;
}

.rr-module__slot[data-photo-slot]:empty {
	min-height: 0;
	margin-top: 0;
}

/* —— Module mockups (RR-002) —— */

.rr-mockup {
	border: 1px solid var(--rr-border);
	background: rgba(0, 0, 0, 0.35);
}

.rr-mockup__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 0.75rem;
	border-bottom: 1px solid var(--rr-border);
	background: rgba(255, 255, 255, 0.02);
	font-family: var(--rr-mono);
	font-size: 0.5625rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--rr-text-faint);
}

.rr-mockup__toolbar span:last-child {
	color: var(--rr-accent);
}

/* Building schematic */
.rr-mockup__schematic {
	position: relative;
	min-height: 7rem;
	padding: 0.75rem;
}

.rr-mockup__zone {
	position: absolute;
	border: 1px dashed rgba(185, 155, 104, 0.35);
	border-radius: 0.25rem;
	background: rgba(185, 155, 104, 0.06);
}

.rr-mockup__zone--high {
	inset: 0.75rem 35% 45% 0.75rem;
	background: rgba(185, 80, 60, 0.12);
	border-color: rgba(185, 80, 60, 0.35);
}

.rr-mockup__zone--med {
	inset: 45% 0.75rem 0.75rem 35%;
}

.rr-mockup__zone--low {
	inset: 0.75rem 0.75rem 45% 65%;
}

.rr-mockup__legend {
	position: absolute;
	right: 0.75rem;
	bottom: 0.5rem;
	font-family: var(--rr-mono);
	font-size: 0.5rem;
	letter-spacing: 0.06em;
	color: var(--rr-text-faint);
}

/* Matterport */
.rr-mockup__matterport {
	display: grid;
	grid-template-columns: 1.4fr 0.6fr;
	gap: 0.5rem;
	min-height: 7rem;
	padding: 0.75rem;
}

.rr-mockup__mp-view {
	border-radius: 0.375rem;
	background:
		linear-gradient(135deg, rgba(185, 155, 104, 0.15), rgba(255, 255, 255, 0.04)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 24px),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 24px);
	border: 1px solid var(--rr-border);
}

.rr-mockup__mp-dollhouse {
	border-radius: 0.375rem;
	background: linear-gradient(180deg, rgba(185, 155, 104, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
	border: 1px solid var(--rr-border);
}

.rr-mockup__mp-tag {
	grid-column: 1 / -1;
	font-family: var(--rr-mono);
	font-size: 0.5rem;
	letter-spacing: 0.06em;
	color: var(--rr-text-faint);
}

/* Utility map */
.rr-mockup__utility {
	position: relative;
	min-height: 7rem;
	padding: 0.75rem;
}

.rr-mockup__pipe {
	position: absolute;
	top: 50%;
	left: 10%;
	right: 15%;
	height: 2px;
	background: linear-gradient(90deg, rgba(91, 155, 213, 0.6), rgba(91, 155, 213, 0.2));
	transform: translateY(-50%);
}

.rr-mockup__valve {
	position: absolute;
	top: 50%;
	width: 0.75rem;
	height: 0.75rem;
	border: 2px solid #5b9bd5;
	border-radius: 50%;
	background: rgba(7, 7, 7, 0.9);
	transform: translate(-50%, -50%);
}

.rr-mockup__valve--main {
	left: 28%;
	box-shadow: 0 0 0 3px rgba(91, 155, 213, 0.2);
}

.rr-mockup__valve:not(.rr-mockup__valve--main) {
	left: 58%;
}

.rr-mockup__panel {
	position: absolute;
	top: 20%;
	right: 12%;
	width: 2rem;
	height: 2.5rem;
	border: 1px solid rgba(232, 184, 74, 0.5);
	border-radius: 0.25rem;
	background: rgba(232, 184, 74, 0.12);
}

.rr-mockup__panel::after {
	content: "";
	position: absolute;
	inset: 0.375rem;
	border-top: 2px solid rgba(232, 184, 74, 0.4);
}

/* Command binder */
.rr-mockup__binder {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	min-height: 7rem;
}

.rr-mockup__binder-list {
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	border-right: 1px solid var(--rr-border);
}

.rr-mockup__binder-list li {
	padding: 0.375rem 0.75rem;
	font-size: 0.625rem;
	line-height: 1.35;
	color: var(--rr-text-faint);
	border-left: 2px solid transparent;
}

.rr-mockup__binder-list li.is-active {
	color: var(--rr-text);
	border-left-color: var(--rr-accent);
	background: var(--rr-accent-soft);
}

.rr-mockup__binder-doc {
	padding: 0.75rem;
}

.rr-mockup__binder-doc span {
	display: block;
	height: 0.375rem;
	margin-bottom: 0.375rem;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.06);
}

.rr-mockup__binder-doc span:nth-child(2) { width: 85%; }
.rr-mockup__binder-doc span:nth-child(3) { width: 60%; }

.rr-mockup__binder-doc p {
	margin: 0.5rem 0 0;
	font-size: 0.625rem;
	font-weight: 500;
	color: var(--rr-accent);
}

/* Contact directory */
.rr-mockup__contacts {
	margin: 0;
	padding: 0.5rem 0.75rem;
	list-style: none;
}

.rr-mockup__contacts li {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.625rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(185, 155, 104, 0.08);
}

.rr-mockup__contacts li:last-child {
	border-bottom: none;
}

.rr-mockup__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	font-family: var(--rr-mono);
	font-size: 0.5rem;
	font-weight: 600;
	color: var(--black);
	background: var(--rr-accent);
	border-radius: 50%;
}

.rr-mockup__contact-name {
	font-size: 0.6875rem;
	font-weight: 500;
	color: var(--rr-text);
}

.rr-mockup__contact-role {
	font-family: var(--rr-mono);
	font-size: 0.5rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--rr-text-faint);
}

/* Tablet */
.rr-mockup--tablet {
	padding: 1rem;
	background: rgba(0, 0, 0, 0.45);
}

.rr-mockup__tablet {
	max-width: 11rem;
	margin-inline: auto;
	padding: 0.5rem;
	border: 2px solid rgba(185, 155, 104, 0.25);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.rr-mockup__tablet-screen {
	padding: 0.875rem;
	border-radius: 0.375rem;
	background: rgba(9, 9, 9, 0.9);
	border: 1px solid var(--rr-border);
}

.rr-mockup__tablet-brand {
	display: block;
	margin-bottom: 0.375rem;
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--rr-accent);
}

.rr-mockup__tablet-status {
	display: block;
	margin-bottom: 0.625rem;
	font-family: var(--rr-mono);
	font-size: 0.5rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--rr-text-faint);
}

.rr-mockup__tablet-checks {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
}

.rr-mockup__tablet-checks span {
	padding: 0.25rem 0.5rem;
	font-size: 0.5625rem;
	font-weight: 500;
	color: var(--rr-text-faint);
	border: 1px solid var(--rr-border);
	border-radius: 999px;
}

.rr-mockup__tablet-checks span.is-done {
	color: var(--rr-text);
	border-color: var(--rr-border-strong);
	background: var(--rr-accent-soft);
}

/* —— Process —— */

.rr-process {
	padding-block: var(--rr-section-y);
	border-top: 1px solid var(--rr-border);
}

.rr-process__header {
	max-width: 36rem;
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.rr-process__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	counter-reset: rr-step;
}

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

.rr-step::before {
	content: counter(rr-step, decimal-leading-zero);
	display: block;
	margin-bottom: 1rem;
	font-family: var(--rr-mono);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--rr-accent);
}

.rr-step::after {
	content: "";
	position: absolute;
	top: 0.5rem;
	left: 2.5rem;
	right: -0.75rem;
	height: 1px;
	background: var(--rr-border);
}

.rr-step:last-child::after {
	display: none;
}

.rr-step h3 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--rr-text);
}

.rr-step p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--rr-text-muted);
}

/* —— Incident Command —— */

.rr-incident {
	padding-block: var(--rr-section-y);
	border-top: 1px solid var(--rr-border);
	background:
		radial-gradient(ellipse 60% 40% at 50% 0%, rgba(185, 155, 104, 0.06), transparent 60%),
		var(--rr-bg);
}

.rr-incident__header {
	max-width: 40rem;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.rr-incident__timeline {
	position: relative;
	max-width: 36rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rr-incident__timeline::before {
	content: "";
	position: absolute;
	top: 0.75rem;
	bottom: 0.75rem;
	left: 0.4375rem;
	width: 1px;
	background: linear-gradient(to bottom, var(--rr-accent), var(--rr-border));
}

.rr-incident__step {
	position: relative;
	display: grid;
	grid-template-columns: 1.25rem 1fr;
	gap: 1.25rem;
	padding-bottom: 2rem;
}

.rr-incident__step:last-child {
	padding-bottom: 0;
}

.rr-incident__marker {
	position: relative;
	z-index: 1;
	width: 0.875rem;
	height: 0.875rem;
	margin-top: 0.25rem;
	border: 2px solid var(--rr-accent);
	border-radius: 50%;
	background: var(--rr-bg);
	box-shadow: 0 0 0 4px rgba(185, 155, 104, 0.12);
}

.rr-incident__step--final .rr-incident__marker {
	background: var(--rr-accent);
	box-shadow: 0 0 12px rgba(185, 155, 104, 0.45);
}

.rr-incident__content h3 {
	margin: 0 0 0.375rem;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--rr-text);
}

.rr-incident__content p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--rr-text-muted);
}

/* —— Always Current —— */

.rr-always {
	padding-block: var(--rr-section-y);
	background: var(--ivory);
	color: rgba(9, 9, 9, 0.88);
}

.rr-always .rr-section-title {
	color: var(--black);
}

.rr-always .rr-section-lede {
	color: rgba(9, 9, 9, 0.68);
}

.rr-always__header {
	max-width: 42rem;
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.rr-always__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.rr-always__item {
	padding: clamp(1.25rem, 2.5vw, 1.5rem);
	border: 1px solid rgba(9, 9, 9, 0.08);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.65);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.rr-always__item:hover {
	border-color: rgba(185, 155, 104, 0.35);
	box-shadow: 0 8px 24px rgba(9, 9, 9, 0.06);
}

.rr-always__item--wide {
	grid-column: span 2;
}

.rr-always__item h3 {
	margin: 0 0 0.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--black);
}

.rr-always__item p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: rgba(9, 9, 9, 0.68);
}

.rr-always__membership {
	margin: clamp(2rem, 4vw, 3rem) 0 0;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(9, 9, 9, 0.1);
	font-family: var(--rr-mono);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	color: rgba(9, 9, 9, 0.5);
}

/* —— Compare —— */

.rr-compare {
	padding-block: var(--rr-section-y);
	background: rgba(255, 255, 255, 0.015);
}

.rr-compare__header {
	max-width: 40rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.rr-compare__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9375rem;
}

.rr-compare__table th,
.rr-compare__table td {
	padding: 1rem 1.25rem;
	text-align: left;
	border-bottom: 1px solid var(--rr-border);
	vertical-align: top;
}

.rr-compare__table th {
	font-family: var(--rr-mono);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rr-text-faint);
}

.rr-compare__table th:nth-child(3) {
	color: var(--rr-accent);
}

.rr-compare__table td:first-child {
	font-weight: 500;
	color: var(--rr-text);
	width: 28%;
}

.rr-compare__table td:nth-child(2) {
	color: var(--rr-text-faint);
}

.rr-compare__table td:nth-child(3) {
	color: var(--rr-text-muted);
}

/* —— Audience —— */

.rr-audience {
	padding-block: var(--rr-section-y);
	border-top: 1px solid var(--rr-border);
}

.rr-audience__header {
	max-width: 36rem;
	margin-bottom: 2rem;
}

.rr-audience__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
}

.rr-tag {
	padding: 0.5rem 1rem;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--rr-text-muted);
	border: 1px solid var(--rr-border);
	border-radius: 999px;
	background: var(--rr-surface);
	transition: border-color 0.2s ease, color 0.2s ease;
}

.rr-tag:hover {
	border-color: var(--rr-border-strong);
	color: var(--rr-text);
}

/* —— Enrollment —— */

.rr-enroll {
	padding-block: var(--rr-section-y);
}

.rr-enroll__panel {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	padding: clamp(2rem, 5vw, 3.5rem);
	border: 1px solid var(--rr-border-strong);
	border-radius: 1.25rem;
	background:
		radial-gradient(ellipse 80% 60% at 100% 0%, rgba(185, 155, 104, 0.08), transparent 55%),
		rgba(255, 255, 255, 0.02);
}

.rr-enroll__copy .rr-section-title {
	margin-bottom: 1rem;
}

.rr-enroll__list {
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.rr-enroll__list li {
	position: relative;
	padding: 0.5rem 0 0.5rem 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--rr-text-muted);
}

.rr-enroll__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.875rem;
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 50%;
	background: var(--rr-accent);
}

.rr-enroll__form-note {
	margin: 1rem 0 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--rr-text-faint);
}

.rr-enroll__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
}

/* —— FAQ —— */

.rr-faq {
	padding-block: var(--rr-section-y);
	border-top: 1px solid var(--rr-border);
}

.rr-faq__header {
	max-width: 32rem;
	margin-bottom: 2.5rem;
}

.rr-faq__list {
	max-width: 48rem;
}

.rr-faq details {
	border-bottom: 1px solid var(--rr-border);
}

.rr-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 0;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--rr-text);
	cursor: pointer;
	list-style: none;
}

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

.rr-faq summary::after {
	content: "+";
	flex-shrink: 0;
	font-size: 1.25rem;
	font-weight: 300;
	color: var(--rr-text-faint);
	transition: color 0.2s ease;
}

.rr-faq details[open] summary::after {
	content: "−";
	color: var(--rr-accent);
}

.rr-faq details p {
	margin: 0;
	padding: 0 2rem 1.25rem 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--rr-text-muted);
}

/* —— Footer —— */

.rr-footer {
	padding: 3rem 0 2rem;
	border-top: 1px solid var(--rr-border);
}

.rr-footer__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2rem;
}

.rr-footer__brand p {
	margin: 0.5rem 0 0;
	max-width: 18rem;
	font-size: 0.8125rem;
	line-height: 1.55;
	color: var(--rr-text-faint);
}

.rr-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem 2rem;
}

.rr-footer__links a {
	font-size: 0.8125rem;
	text-decoration: none;
	color: var(--rr-text-muted);
	transition: color 0.2s ease;
}

.rr-footer__links a:hover {
	color: var(--rr-text);
}

.rr-footer__legal {
	width: 100%;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--rr-border);
	font-size: 0.75rem;
	color: var(--rr-text-faint);
}

/* —— Reveal —— */

[data-rr-reveal] {
	opacity: 0;
	transform: translateY(1.25rem);
	transition:
		opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-rr-reveal].is-visible {
	opacity: 1;
	transform: none;
}

[data-rr-reveal][data-rr-delay="1"] { transition-delay: 0.08s; }
[data-rr-reveal][data-rr-delay="2"] { transition-delay: 0.16s; }
[data-rr-reveal][data-rr-delay="3"] { transition-delay: 0.24s; }

/* —— Responsive —— */

@media (max-width: 64rem) {
	.rr-hero__inner {
		grid-template-columns: 1fr;
	}

	.rr-hero__visual {
		order: -1;
	}

	.rr-app__layout {
		grid-template-columns: 4.5rem 1fr;
	}

	.rr-app__split {
		grid-template-columns: 1fr;
	}

	.rr-mockup__binder {
		grid-template-columns: 1fr;
	}

	.rr-mockup__binder-list {
		display: flex;
		flex-wrap: wrap;
		gap: 0.25rem;
		padding: 0.5rem 0.75rem;
		border-right: none;
		border-bottom: 1px solid var(--rr-border);
	}

	.rr-mockup__binder-list li {
		padding: 0.25rem 0.5rem;
		border-left: none;
		border-radius: 999px;
		border: 1px solid var(--rr-border);
	}

	.rr-mockup__binder-list li.is-active {
		border-color: var(--rr-border-strong);
	}

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

	.rr-always__item--wide {
		grid-column: span 2;
	}

	.rr-problem__grid {
		grid-template-columns: 1fr;
	}

	.rr-module,
	.rr-module--wide {
		grid-column: span 6;
	}

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

	.rr-step::after {
		display: none;
	}

	.rr-enroll__panel {
		grid-template-columns: 1fr;
	}

	.rr-metrics__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 48rem) {
	.rr-nav__inner {
		flex-wrap: wrap;
	}

	.rr-nav__links {
		order: 3;
		flex: 1 1 100%;
		flex-wrap: wrap;
		gap: 0.75rem 1.25rem;
		padding-top: 0.5rem;
	}

	.rr-nav__toggle {
		display: none;
	}

	.rr-bento {
		grid-template-columns: 1fr;
	}

	.rr-module,
	.rr-module--wide {
		grid-column: auto;
	}

	.rr-process__steps {
		grid-template-columns: 1fr;
	}

	.rr-always__grid {
		grid-template-columns: 1fr;
	}

	.rr-always__item--wide {
		grid-column: auto;
	}

	.rr-compare__table thead {
		display: none;
	}

	.rr-compare__table tr {
		display: block;
		margin-bottom: 1.5rem;
		padding-bottom: 1.5rem;
		border-bottom: 1px solid var(--rr-border);
	}

	.rr-compare__table td {
		display: block;
		padding: 0.25rem 0;
		border: none;
	}

	.rr-compare__table td:first-child {
		margin-bottom: 0.5rem;
		font-size: 0.875rem;
	}

	.rr-compare__table td::before {
		display: block;
		margin-bottom: 0.125rem;
		font-family: var(--rr-mono);
		font-size: 0.625rem;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: var(--rr-text-faint);
	}

	.rr-compare__table td:nth-child(2)::before {
		content: "Reactive";
	}

	.rr-compare__table td:nth-child(3)::before {
		content: "ResponseReady";
		color: var(--rr-accent);
	}
}

@media (prefers-reduced-motion: reduce) {
	[data-rr-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.rr-hero__glow {
		animation: none;
	}

	.rr-app__live-dot {
		animation: none;
	}

	.rr-module:hover,
	.rr-btn--primary:hover,
	.rr-nav__cta:hover {
		transform: none;
	}
}
