/* Rush Big Bucket Landing — night-to-daylight story page
   Palette: Storm Night #0d151d · Rain Slate #17222c · Machine Yellow #f5b700
            Sunrise Amber #f08a24 · Concrete #e8ebea · Ink #111a22
   Type:    Archivo (wide display) · IBM Plex Sans (body) · IBM Plex Mono (time, prices, labels) */

.rbl {
	--night: #0d151d;
	--slate: #17222c;
	--slate-2: #22303b;
	--yellow: #f5b700;
	--yellow-hi: #ffc933;
	--amber: #f08a24;
	--concrete: #e8ebea;
	--paper: #f6f7f6;
	--ink: #111a22;
	--muted: #56636c;
	--fog: #aab6bd;
	--line-dark: rgba(255, 255, 255, 0.12);
	--line-light: rgba(17, 26, 34, 0.14);
	--flood: #5fa8c4;
	--danger: #c2410c;
	--display: "Archivo", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
	--body: "IBM Plex Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
	--radius: 6px;
	--gutter: clamp(16px, 4vw, 40px);
	--nav-h: 68px;

	background: var(--night);
	color: #fff;
	font-family: var(--body);
	font-size: 1.0625rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

body.rbl-body { margin: 0; background: #0d151d; }

/* Scoped reset so theme styles can't leak in */
.rbl *, .rbl *::before, .rbl *::after { box-sizing: border-box; }
.rbl h1, .rbl h2, .rbl h3, .rbl p, .rbl ul, .rbl ol, .rbl dl, .rbl dd, .rbl figure { margin: 0; padding: 0; }
.rbl ul, .rbl ol { list-style: none; }
.rbl a { color: inherit; text-decoration: none; }
.rbl img { display: block; max-width: 100%; height: auto; border: 0; }
.rbl button, .rbl input, .rbl select, .rbl textarea { font: inherit; color: inherit; }
.rbl h1, .rbl h2, .rbl h3 { font-family: var(--display); color: inherit; letter-spacing: -0.01em; text-wrap: balance; text-transform: none; }
.rbl :focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; box-shadow: 0 0 0 6px var(--ink); border-radius: 2px; }

.rbl-wrap { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--gutter); }

.rbl .rbl-skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--yellow); color: var(--ink); padding: 10px 14px; font-weight: 600; }
.rbl .rbl-skip:focus { left: 8px; }

.rbl-eyebrow {
	font-family: var(--mono);
	font-size: 0.75rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--yellow);
	display: flex;
	align-items: center;
	gap: 10px;
}
.rbl-eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; flex: none; }
.rbl-eyebrow--dark { color: var(--muted); }
.rbl-eyebrow--dark::before { background: var(--yellow); height: 3px; }

.rbl-ico { width: 20px; height: 20px; flex: none; }

/* ---------- Buttons ---------- */
.rbl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 4px;
	border: 2px solid transparent;
	font-family: var(--display);
	font-weight: 700;
	font-stretch: 105%;
	font-size: 1rem;
	letter-spacing: 0.01em;
	line-height: 1.1;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}
.rbl-btn:hover { transform: translateY(-2px); }
.rbl-btn:active { transform: translateY(0); }
.rbl .rbl-btn--sm { min-height: 44px; padding: 0 16px; font-size: 0.9375rem; }
.rbl .rbl-btn--wa, .rbl .rbl-btn--yellow { background: var(--yellow); color: var(--ink); }
.rbl .rbl-btn--wa:hover, .rbl .rbl-btn--yellow:hover { background: var(--yellow-hi); }
.rbl .rbl-btn--ghost { border-color: rgba(255, 255, 255, 0.45); color: #fff; }
.rbl .rbl-btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.rbl .rbl-btn--dark { background: var(--ink); color: #fff; }
.rbl .rbl-btn--dark:hover { background: #22303b; }
.rbl .rbl-btn--ghost-dark { border-color: var(--ink); color: var(--ink); }
.rbl .rbl-btn--ghost-dark:hover { background: var(--ink); color: #fff; }
.rbl .rbl-link { font-weight: 600; color: var(--ink); border-bottom: 2px solid var(--yellow); padding-bottom: 2px; }

/* ---------- Nav ---------- */
.rbl-nav {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 50;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
body.admin-bar .rbl-nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .rbl-nav { top: 46px; } }
.rbl-nav.is-solid { background: rgba(13, 21, 29, 0.92); box-shadow: 0 1px 0 var(--line-dark); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.rbl-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.rbl-brand { display: flex; align-items: center; gap: 12px; }
.rbl-brand__logo { max-height: 44px; width: auto; }
.rbl-brand__mark {
	font-family: var(--display);
	font-weight: 900;
	font-stretch: 125%;
	font-size: 1.6rem;
	letter-spacing: 0.02em;
	line-height: 1;
	padding: 6px 10px 5px;
	background: var(--yellow);
	color: var(--ink);
	border-radius: 3px;
}
.rbl-brand__sub { font-family: var(--mono); font-size: 0.625rem; line-height: 1.35; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fog); }
.rbl-nav__links { display: flex; gap: 28px; font-size: 0.9375rem; font-weight: 500; }
.rbl-nav__links a { color: rgba(255, 255, 255, 0.82); padding: 6px 0; border-bottom: 2px solid transparent; }
.rbl-nav__links a:hover { color: #fff; border-color: var(--yellow); }
@media (max-width: 900px) { .rbl-nav__links { display: none; } }
@media (max-width: 420px) { .rbl-brand__sub { display: none; } }

/* ---------- Hero ---------- */
.rbl-hero {
	position: relative;
	min-height: min(90svh, 860px);
	display: flex;
	align-items: flex-end;
	padding-block: calc(var(--nav-h) + 48px) 88px;
	isolation: isolate;
	overflow: hidden;
	perspective: 1200px;
}
.rbl-hero__media {
	position: absolute;
	inset: -2% -1% -2% -2%;
	z-index: -2;
	transform: translate3d(0, var(--sy, 0px), 0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale(1.02);
	transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
	will-change: transform;
}
.rbl-hero__media picture, .rbl-hero__media img, .rbl-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; }
.rbl-hero__media img, .rbl-hero__video { object-fit: cover; object-position: 86% 60%; }
.rbl-hero__video { opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.rbl-hero__video.is-on { opacity: 1; }
.rbl-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(13, 21, 29, 0.9) 0%, rgba(13, 21, 29, 0.72) 34%, rgba(13, 21, 29, 0.18) 62%, rgba(13, 21, 29, 0) 78%),
		linear-gradient(0deg, rgba(13, 21, 29, 0.96) 0%, rgba(13, 21, 29, 0.35) 30%, rgba(13, 21, 29, 0) 50%),
		linear-gradient(180deg, rgba(13, 21, 29, 0.6) 0%, rgba(13, 21, 29, 0) 20%);
}
.rbl-hero__inner { display: grid; gap: 22px; transform: translateZ(40px); }
.rbl-hero__title {
	font-size: clamp(2.6rem, 6.6vw, 5.75rem);
	font-weight: 800;
	font-stretch: 112%;
	line-height: 0.98;
	letter-spacing: -0.025em;
	max-width: 11ch;
}
.rbl-hero__title em { font-style: normal; color: var(--yellow); display: inline-block; }
.rbl-hero__slogan {
	font-family: var(--display);
	font-weight: 700;
	font-stretch: 118%;
	font-size: clamp(1rem, 1.9vw, 1.4rem);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--yellow);
	line-height: 1.2;
	margin-top: -6px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.rbl-hero__slogan::before { content: ""; width: 34px; height: 3px; background: var(--yellow); flex: none; }
.rbl-hero__lede { font-size: clamp(1.0625rem, 1.6vw, 1.25rem); color: rgba(255, 255, 255, 0.86); max-width: 38ch; }
.rbl-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.rbl-hero__prices { display: flex; flex-wrap: wrap; gap: 12px 40px; margin-top: 18px; padding-top: 20px; border-top: 1px solid var(--line-dark); max-width: 560px; }
.rbl-hero__prices dt { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fog); }
.rbl-hero__prices dd { font-family: var(--display); font-weight: 800; font-stretch: 110%; font-size: 1.75rem; line-height: 1.2; font-variant-numeric: tabular-nums; }
.rbl-hero__prices small { font-family: var(--body); font-weight: 500; font-size: 0.875rem; color: var(--fog); margin-right: 2px; font-stretch: 100%; }
.rbl .rbl-hero__cue {
	position: absolute;
	right: var(--gutter);
	bottom: 28px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--mono);
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--fog);
}
.rbl-hero__cue i { width: 2px; height: 42px; background: linear-gradient(var(--yellow), transparent); animation: rbl-cue 2s ease-in-out infinite; transform-origin: top; }
@keyframes rbl-cue { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }
/* Phones and portrait tablets: show the whole sunrise (sun + bucket + machine) in a panel, text underneath */
@media (max-width: 700px), (max-width: 1024px) and (orientation: portrait) {
	.rbl-hero {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		min-height: 0;
		padding-block: 0 40px;
		background: var(--night);
		perspective: none;
	}
	.rbl-hero::before { display: none; }
	.rbl-hero__media {
		position: relative;
		inset: auto;
		z-index: 0;
		width: 100%;
		height: min(52svh, 520px);
		transform: none !important;
		transition: none;
	}
	.rbl-hero__media img, .rbl-hero__video { object-position: 86% 50%; }
	.rbl-hero__media::after {
		content: "";
		position: absolute;
		inset: 0;
		pointer-events: none;
		background:
			linear-gradient(180deg, rgba(13, 21, 29, 0.7) 0%, rgba(13, 21, 29, 0) 22%),
			linear-gradient(0deg, var(--night) 0%, rgba(13, 21, 29, 0) 11%);
	}
	.rbl-hero__inner { position: relative; z-index: 1; margin-top: 6px; transform: none; gap: 18px; }
}
@media (max-width: 700px) { .rbl .rbl-hero__cue { display: none; } .rbl-hero { padding-bottom: 48px; }  }

/* ---------- Perks ---------- */
.rbl-perks { background: var(--slate); border-block: 1px solid var(--line-dark); }
.rbl-perks__list { display: grid; grid-template-columns: repeat(4, 1fr); }
.rbl-perks__list li { display: flex; gap: 14px; align-items: flex-start; padding: 26px 24px 26px 0; }
.rbl-perks__list li + li { padding-left: 24px; border-left: 1px solid var(--line-dark); }
.rbl-perks svg { width: 30px; height: 30px; flex: none; fill: none; stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.rbl-perks strong { display: block; font-family: var(--display); font-weight: 700; font-stretch: 105%; font-size: 1.0625rem; line-height: 1.3; }
.rbl-perks span { display: block; font-size: 0.9rem; color: var(--fog); line-height: 1.45; margin-top: 2px; }
@media (max-width: 960px) {
	.rbl-perks__list { grid-template-columns: repeat(2, 1fr); }
	.rbl-perks__list li, .rbl-perks__list li + li { padding: 20px 16px 20px 0; border-left: 0; }
	.rbl-perks__list li:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line-dark); }
	.rbl-perks__list li:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
}
@media (max-width: 520px) {
	.rbl-perks__list { grid-template-columns: 1fr; }
	.rbl-perks__list li:nth-child(even) { padding-left: 0; border-left: 0; }
	.rbl-perks__list li + li { border-top: 1px solid var(--line-dark); }
}

/* ---------- Story ---------- */
.rbl-story { background: var(--night); position: relative; }
.rbl-story__intro { padding-block: clamp(64px, 10vw, 120px) 40px; display: grid; gap: 14px; }
.rbl-story__intro h2 { font-size: clamp(2rem, 4.4vw, 3.5rem); font-weight: 800; font-stretch: 110%; line-height: 1.02; max-width: 16ch; }
.rbl-story__track { position: relative; height: calc(100svh + (var(--scenes, 6) - 1) * 85svh); }
.rbl-story__stage {
	position: sticky;
	top: 0;
	height: 100svh;
	overflow: hidden;
	perspective: 1400px;
	perspective-origin: 50% 80%;
	background: #06090d;
}
.rbl-story__scenes { position: absolute; inset: 0; transform-style: preserve-3d; }
.rbl-scene {
	position: absolute;
	inset: 0;
	overflow: hidden;
	transform-origin: 50% 100%;
	backface-visibility: hidden;
	will-change: transform, clip-path;
}
.rbl-scene img { width: 100%; height: 100%; object-fit: cover; transform-origin: 50% 60%; will-change: transform; }
.rbl-scene:not(:first-child) { clip-path: inset(100% 0 0 0); }
.rbl-rain { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; mix-blend-mode: screen; }
.rbl-story__shade {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(6, 9, 13, 0.55) 0%, rgba(6, 9, 13, 0) 22%),
		linear-gradient(0deg, rgba(6, 9, 13, 0.85) 0%, rgba(6, 9, 13, 0) 42%);
}

.rbl-hud {
	position: absolute;
	top: calc(var(--nav-h) + 20px);
	right: var(--gutter);
	display: flex;
	gap: 22px;
	align-items: flex-start;
	font-family: var(--mono);
	color: #fff;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.rbl-hud__label { display: block; font-size: 0.625rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); margin-bottom: 4px; }
.rbl-hud__clock span:last-child { font-size: 1.5rem; font-weight: 500; font-variant-numeric: tabular-nums; }
.rbl-hud__gauge { display: grid; justify-items: center; }
.rbl-gauge { position: relative; width: 10px; height: 88px; border-radius: 5px; background: rgba(255, 255, 255, 0.16); overflow: visible; }
.rbl-gauge i { position: absolute; left: 0; right: 0; bottom: 0; height: calc(var(--level, 0) * 100%); border-radius: 5px; background: linear-gradient(0deg, #3b7f9a, var(--flood)); transition: height 0.25s linear; }
.rbl-gauge b { position: absolute; left: 16px; font-size: 0.6rem; font-weight: 400; color: rgba(255, 255, 255, 0.6); }
.rbl-gauge b:first-of-type { top: -6px; }
.rbl-gauge b:last-of-type { bottom: -2px; }
.rbl-hud__value { font-size: 0.8rem; margin-top: 16px; font-variant-numeric: tabular-nums; }

.rbl-captions { position: absolute; left: var(--gutter); bottom: clamp(28px, 7vh, 72px); width: min(440px, calc(100% - 2 * var(--gutter))); display: grid; }
.rbl-caption {
	grid-area: 1 / 1;
	align-self: end;
	padding: 22px 24px 24px;
	background: rgba(13, 21, 29, 0.78);
	border-left: 3px solid var(--yellow);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0;
	will-change: transform, opacity;
}
.rbl-caption:first-child { opacity: 1; }
.rbl-story.is-live .rbl-caption { opacity: 0; transform: translateY(18px); transition: opacity 0.45s ease, transform 0.45s ease; pointer-events: none; }
.rbl-story.is-live .rbl-caption.is-active { opacity: 1; transform: none; pointer-events: auto; }
.rbl-caption__time { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.12em; color: var(--yellow); }
.rbl-caption h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; font-stretch: 108%; line-height: 1.05; margin: 6px 0 8px; }
.rbl-caption p { color: rgba(255, 255, 255, 0.88); font-size: 1.0625rem; line-height: 1.5; }

.rbl-progress { position: absolute; right: var(--gutter); bottom: clamp(28px, 7vh, 72px); display: flex; gap: 6px; }
.rbl-progress i { width: 22px; height: 3px; background: rgba(255, 255, 255, 0.28); transition: background-color 0.3s ease; }
.rbl-progress i.is-on { background: var(--yellow); }

@media (max-width: 700px) {
	.rbl-hud { top: calc(var(--nav-h) + 12px); gap: 16px; }
	.rbl-hud__clock span:last-child { font-size: 1.15rem; }
	.rbl-gauge { height: 60px; }
	.rbl-captions { left: 16px; right: 16px; width: auto; bottom: calc(84px + env(safe-area-inset-bottom)); }
	.rbl-caption { padding: 16px 18px 18px; }
	.rbl-caption p { font-size: 1rem; }
	.rbl-progress { left: 16px; right: auto; bottom: auto; top: calc(var(--nav-h) + 18px); }
	.rbl-scene img { object-position: var(--fx, 62%) 50%; }
}

/* Sunrise bleed from story into daylight */
.rbl-story::after {
	content: "";
	display: block;
	height: clamp(90px, 14vw, 160px);
	background: linear-gradient(180deg, var(--night) 0%, #4a2d1d 35%, var(--amber) 62%, #f3c77a 80%, var(--concrete) 100%);
}

/* ---------- Bridge ---------- */
.rbl-bridge { background: var(--concrete); color: var(--ink); padding-block: clamp(48px, 8vw, 96px); }
.rbl-bridge__inner { display: grid; gap: 18px; justify-items: start; }
.rbl-bridge h2 { font-size: clamp(2rem, 4.8vw, 3.9rem); font-weight: 800; font-stretch: 112%; line-height: 1.02; max-width: 18ch; }
.rbl-bridge h2 span { color: var(--muted); }
.rbl-bridge p:not(.rbl-eyebrow) { max-width: 52ch; color: var(--muted); font-size: 1.125rem; }
.rbl-bridge__cta { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 8px; }

/* ---------- Section heads ---------- */
.rbl-head { display: grid; gap: 12px; margin-bottom: clamp(32px, 5vw, 56px); }
.rbl-head h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 800; font-stretch: 110%; line-height: 1.04; max-width: 20ch; }

/* ---------- Services ---------- */
.rbl-services { background: var(--concrete); color: var(--ink); padding-block: 24px clamp(64px, 9vw, 110px); border-top: 1px solid var(--line-light); }
.rbl-services .rbl-head { padding-top: clamp(40px, 6vw, 72px); }
.rbl-machine {
	display: grid;
	grid-template-columns: 1.08fr 1fr;
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
	padding-block: clamp(20px, 3vw, 36px);
}
.rbl-machine + .rbl-machine { margin-top: clamp(28px, 5vw, 64px); }
.rbl-machine--flip .rbl-machine__media { order: 2; }
.rbl-machine__media {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	max-width: 100%;
	background: #cfd5d4;
	transform: perspective(1000px) rotateX(var(--tx, 0deg)) rotateY(var(--ty, 0deg));
	transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.5s ease;
	box-shadow: 0 30px 60px -30px rgba(17, 26, 34, 0.45);
}
.rbl-machine__media img { width: 100%; height: 100%; object-fit: cover; }
.rbl-plate {
	position: absolute;
	left: 14px;
	top: 14px;
	font-family: var(--mono);
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: var(--ink);
	color: var(--yellow);
	padding: 6px 10px;
	border-radius: 3px;
}
.rbl-machine__body { display: grid; gap: 10px; justify-items: start; }
.rbl-machine__body h3 { font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 800; font-stretch: 115%; line-height: 1; }
.rbl-price { font-size: 1.125rem; }
.rbl-price strong { font-family: var(--display); font-stretch: 110%; font-size: 1.6rem; font-weight: 800; background: linear-gradient(transparent 62%, var(--yellow) 62%); padding: 0 2px; font-variant-numeric: tabular-nums; }
.rbl-note { font-family: var(--mono); font-size: 0.8rem; color: var(--muted); letter-spacing: 0.02em; }
.rbl-tags { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; margin: 12px 0 18px; width: 100%; }
.rbl-tags li { position: relative; padding: 11px 0 11px 20px; border-bottom: 1px solid var(--line-light); font-weight: 500; line-height: 1.35; }
.rbl-tags li::before { content: ""; position: absolute; left: 0; top: 1.05em; width: 9px; height: 9px; background: var(--yellow); border-radius: 1px; }
.rbl-uses { display: grid; margin: 12px 0 18px; width: 100%; }
.rbl-uses > div { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line-light); }
.rbl-uses dt { font-weight: 600; line-height: 1.35; position: relative; padding-left: 20px; }
.rbl-uses dt::before { content: ""; position: absolute; left: 0; top: 0.42em; width: 9px; height: 9px; background: var(--yellow); border-radius: 1px; }
.rbl-uses dd { color: var(--muted); font-size: 0.95rem; line-height: 1.4; }
.rbl-other {
	margin-top: clamp(40px, 6vw, 72px);
	padding: 28px 0 0;
	border-top: 2px solid var(--ink);
	display: flex;
	flex-wrap: wrap;
	gap: 16px 32px;
	align-items: center;
	justify-content: space-between;
}
.rbl-other h3 { font-size: 1.5rem; font-weight: 800; font-stretch: 110%; }
.rbl-other p { color: var(--muted); max-width: 56ch; }
@media (max-width: 900px) {
	.rbl-machine { grid-template-columns: 1fr; }
	.rbl-machine--flip .rbl-machine__media { order: 0; }
}
@media (max-width: 520px) {
	.rbl-tags { grid-template-columns: 1fr; }
	.rbl-uses > div { grid-template-columns: 1fr; gap: 2px; }
	.rbl-uses dd { padding-left: 20px; }
}

/* ---------- Precision ---------- */
.rbl-precision { background: var(--night); padding-block: clamp(64px, 9vw, 110px); }
.rbl-precision__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.rbl-precision__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; max-width: 100%; background: var(--slate); }
.rbl-precision__media img { width: 100%; height: 100%; object-fit: cover; }
.rbl-precision__body { display: grid; gap: 16px; }
.rbl-precision__body h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 800; font-stretch: 110%; line-height: 1.04; max-width: 18ch; }
.rbl-precision__body h2 span { display: block; }
.rbl-precision__body h2 span { color: var(--yellow); }
.rbl-precision__lede { color: rgba(255, 255, 255, 0.84); max-width: 48ch; font-size: 1.0625rem; }
.rbl-precision__list { display: grid; margin-top: 8px; border-top: 1px solid var(--line-dark); }
.rbl-precision__list li { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
.rbl-precision__list strong { font-family: var(--display); font-weight: 700; font-stretch: 105%; font-size: 1.0625rem; line-height: 1.3; position: relative; padding-left: 20px; }
.rbl-precision__list strong::before { content: ""; position: absolute; left: 0; top: 0.4em; width: 9px; height: 9px; background: var(--yellow); border-radius: 1px; }
.rbl-precision__list span { color: var(--fog); font-size: 0.95rem; line-height: 1.45; }
@media (max-width: 900px) { .rbl-precision__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .rbl-precision__list li { grid-template-columns: 1fr; gap: 2px; } .rbl-precision__list span { padding-left: 20px; } }

/* ---------- How it works ---------- */
.rbl-how { background: var(--paper); color: var(--ink); padding-block: clamp(64px, 9vw, 110px); }
.rbl-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: none; position: relative; }
.rbl-steps li { position: relative; display: grid; gap: 8px; align-content: start; padding-top: 70px; }
.rbl-steps li::before { content: ""; position: absolute; top: 24px; left: 56px; right: -28px; height: 2px; background: repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 14px); opacity: 0.35; }
.rbl-steps li:last-child::before { display: none; }
.rbl-steps__n {
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--yellow);
	font-family: var(--display);
	font-weight: 800;
	font-size: 1.35rem;
	font-stretch: 110%;
}
.rbl-steps h3 { font-size: 1.3rem; font-weight: 700; font-stretch: 105%; line-height: 1.2; }
.rbl-steps p { color: var(--muted); font-size: 1rem; }
@media (max-width: 900px) {
	.rbl-steps { grid-template-columns: 1fr 1fr; row-gap: 36px; }
	.rbl-steps li::before { display: none; }
}
@media (max-width: 520px) {
	.rbl-steps { grid-template-columns: 1fr; row-gap: 26px; }
	.rbl-steps li { padding: 0 0 0 70px; min-height: 50px; }
}

/* ---------- Deals ---------- */
.rbl-deals { background: var(--night); padding-block: clamp(56px, 8vw, 96px); }
.rbl-deals__grid { display: grid; grid-template-columns: 1fr 1fr; }
.rbl-deal { display: grid; gap: 14px; align-content: start; padding-right: clamp(20px, 4vw, 56px); }
.rbl-deal--alt { padding-right: 0; padding-left: clamp(20px, 4vw, 56px); border-left: 1px solid var(--line-dark); }
.rbl-deal__big { font-family: var(--display); font-weight: 900; font-stretch: 125%; font-size: clamp(3rem, 7vw, 5.5rem); line-height: 0.9; color: var(--yellow); letter-spacing: -0.02em; }
.rbl-deal--alt .rbl-deal__big { color: #fff; }
.rbl-deal__big span { font-weight: 500; font-stretch: 100%; font-size: 0.34em; letter-spacing: 0.04em; margin-left: 10px; color: var(--fog); vertical-align: 0.9em; }
.rbl-deal h3 { font-size: 1.35rem; font-weight: 700; font-stretch: 105%; line-height: 1.25; }
.rbl-deal p { color: var(--fog); margin-top: 4px; }
@media (max-width: 760px) {
	.rbl-deals__grid { grid-template-columns: 1fr; gap: 40px; }
	.rbl-deal, .rbl-deal--alt { padding: 0; border-left: 0; }
	.rbl-deal--alt { padding-top: 40px; border-top: 1px solid var(--line-dark); }
}

/* ---------- Quote ---------- */
.rbl-quote { background: var(--slate); padding-block: clamp(64px, 9vw, 110px); scroll-margin-top: 0; }
.rbl-quote__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.rbl-quote__side { display: grid; gap: 16px; justify-items: start; position: sticky; top: calc(var(--nav-h) + 24px); }
.rbl-quote__side h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; font-stretch: 112%; line-height: 1.02; }
.rbl-quote__lede { color: var(--fog); max-width: 36ch; margin-bottom: 6px; }
.rbl-contact { display: grid; gap: 0; margin-top: 18px; width: 100%; border-top: 1px solid var(--line-dark); }
.rbl-contact > div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
.rbl-contact dt { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fog); padding-top: 3px; }
.rbl-contact dd { font-size: 0.975rem; }
.rbl-contact a { border-bottom: 1px solid rgba(245, 183, 0, 0.6); }

.rbl-form {
	background: #fff;
	color: var(--ink);
	border-radius: var(--radius);
	padding: clamp(22px, 3.5vw, 40px);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 18px;
	box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
}
.rbl-field { display: grid; gap: 6px; align-content: start; min-width: 0; }
.rbl-field--full { grid-column: 1 / -1; }
.rbl-field label { font-weight: 600; font-size: 0.9375rem; }
.rbl-field label small { font-weight: 400; color: var(--muted); }
.rbl-form input[type="text"], .rbl-form input[type="tel"], .rbl-form input[type="email"], .rbl-form input[type="date"], .rbl-form select, .rbl-form textarea {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 1.5px solid #c9d0d4;
	border-radius: 4px;
	background: #fbfcfc;
	color: var(--ink);
	font-size: 1rem;
	line-height: 1.3;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}
.rbl-form select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23111a22' stroke-width='2'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
}
.rbl-form textarea { min-height: 96px; resize: vertical; }
.rbl-form input:focus, .rbl-form select:focus, .rbl-form textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px var(--yellow); }
.rbl-form .is-invalid { border-color: var(--danger) !important; }
.rbl-err { font-size: 0.85rem; color: var(--danger); min-height: 0; }
.rbl-err:empty { display: none; }
.rbl-check { display: flex; gap: 12px; align-items: flex-start; font-size: 0.975rem; cursor: pointer; padding: 12px 14px; background: var(--paper); border-radius: 4px; }
.rbl-check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--ink); flex: none; }
.rbl-hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.rbl-form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; margin-top: 4px; }
.rbl-form__foot .rbl-btn { min-width: 220px; }
.rbl-form__foot .rbl-btn[disabled] { opacity: 0.6; cursor: progress; transform: none; }
.rbl-form__status { font-size: 0.95rem; color: var(--muted); flex: 1 1 220px; }
.rbl-form__status.is-ok { color: #166534; font-weight: 600; }
.rbl-form__status.is-err { color: var(--danger); font-weight: 600; }
.rbl-form.is-sent > :not(.rbl-form__foot) { opacity: 0.45; pointer-events: none; }
@media (max-width: 900px) {
	.rbl-quote__grid { grid-template-columns: 1fr; }
	.rbl-quote__side { position: static; }
}
@media (max-width: 560px) {
	.rbl-form { grid-template-columns: 1fr; }
	.rbl-form__foot .rbl-btn { width: 100%; }
	.rbl-contact > div { grid-template-columns: 1fr; gap: 2px; }
}

/* ---------- FAQ ---------- */
.rbl-faq { background: var(--concrete); color: var(--ink); padding-block: clamp(64px, 9vw, 110px); }
.rbl-faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px, 6vw, 80px); align-items: start; }
.rbl-faq__list { border-top: 2px solid var(--ink); }
.rbl-faq details { border-bottom: 1px solid var(--line-light); }
.rbl-faq summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 44px 20px 0;
	font-family: var(--display);
	font-weight: 700;
	font-stretch: 105%;
	font-size: 1.2rem;
	line-height: 1.3;
	position: relative;
}
.rbl-faq summary::-webkit-details-marker { display: none; }
.rbl-faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--mono); font-size: 1.5rem; font-weight: 400; transition: transform 0.2s ease; }
.rbl-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.rbl-faq details p { padding: 0 0 22px; color: var(--muted); max-width: 60ch; }
@media (max-width: 900px) { .rbl-faq__grid { grid-template-columns: 1fr; } .rbl-faq .rbl-head { margin-bottom: 0; } }

/* ---------- Footer ---------- */
.rbl-footer { background: var(--night); color: rgba(255, 255, 255, 0.85); padding-block: 64px 28px; font-size: 0.95rem; }
.rbl-footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; }
.rbl-footer__grid .rbl-brand__mark { display: inline-block; margin-bottom: 14px; }
.rbl-footer__slogan { font-family: var(--display); font-weight: 700; font-stretch: 115%; letter-spacing: 0.06em; text-transform: uppercase; color: var(--yellow); font-size: 0.95rem; margin-bottom: 10px !important; }
.rbl-footer__label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fog); margin-bottom: 8px !important; }
.rbl-footer a { border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
.rbl-footer a:hover { border-color: var(--yellow); color: #fff; }
.rbl-footer__social { display: flex; gap: 16px; margin-top: 10px !important; }
.rbl-footer__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line-dark); font-size: 0.8rem; color: var(--fog); }
@media (max-width: 760px) { .rbl-footer__grid { grid-template-columns: 1fr; } .rbl-footer { padding-bottom: 96px; } }

/* ---------- Mobile action bar ---------- */
.rbl-bar { display: none; }
@media (max-width: 760px) {
	.rbl-bar {
		display: grid;
		grid-template-columns: 1fr 1.3fr;
		gap: 10px;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 60;
		padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
		background: rgba(13, 21, 29, 0.94);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		box-shadow: 0 -1px 0 var(--line-dark);
		transform: translateY(110%);
		transition: transform 0.35s ease;
	}
	.rbl-bar.is-on { transform: translateY(0); }
	.rbl-nav .rbl-btn--sm span { display: none; }
	.rbl-nav .rbl-btn--sm { padding: 0 12px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	.rbl *, .rbl *::before, .rbl *::after { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
	.rbl-hero__media { transform: none !important; }
	.rbl-machine__media { transform: none !important; }
	.rbl-rain { display: none; }
}
html:has(.rbl) { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html:has(.rbl) { scroll-behavior: auto; } }
