/* ==========================================================================
   RouterPasswords — design system v2
   16 September 2026

   Palette note. The site ran on a generic orange-on-white that could have
   belonged to anything. The neutrals here are cool and slightly blue, the
   brand weight sits in a deep petrol blue, and the orange is kept — it is in
   the logo and the buttons people already recognise — but deepened so it
   reads as chosen rather than defaulted. Semantic green and ochre are
   separate from the accent so "secure" and "clear text" never look like
   decoration.
   ========================================================================== */

:root {
	/* neutrals — cool, biased toward the petrol brand colour */
	--rp-ground:      #f3f6f8;
	--rp-surface:     #ffffff;
	--rp-surface-2:   #eaeff4;
	--rp-ink:         #0b2534;
	--rp-ink-2:       #2b4658;
	--rp-muted:       #566d7e;
	--rp-faint:       #5d7082;
	--rp-line:        #dbe3ea;
	--rp-line-soft:   #e9eef3;

	/* brand */
	--rp-brand:       #0b2534;
	--rp-brand-2:     #12394f;

	/* accent */
	--rp-accent:      #e2580e;
	--rp-accent-ink:  #b34208;
	--rp-accent-wash: #fdf0e7;
	--rp-accent-solid:#c2490a;

	/* semantics, deliberately away from the accent hue */
	--rp-secure:      #0d7a4f;
	--rp-secure-wash: #e6f4ed;
	--rp-caution:     #8a5a00;
	--rp-caution-wash:#fbf2de;
	--rp-plain:       #43586a;
	--rp-plain-wash:  #e8edf2;

	--rp-radius:      10px;
	--rp-radius-sm:   6px;
	--rp-radius-lg:   16px;
	--rp-shadow:      0 1px 2px rgba(11,37,52,.06), 0 1px 3px rgba(11,37,52,.07);
	--rp-shadow-lift: 0 2px 6px rgba(11,37,52,.07), 0 12px 28px rgba(11,37,52,.09);

	--rp-sans:  "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--rp-body:  "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--rp-mono:  ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, "Liberation Mono", "DejaVu Sans Mono", monospace;

	--rp-wrap:  1140px;
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--rp-ground:      #081018;
		--rp-surface:     #101d27;
		--rp-surface-2:   #18262f;
		--rp-ink:         #e9eff4;
		--rp-ink-2:       #c5d3dd;
		--rp-muted:       #94a8b6;
		--rp-faint:       #7a92a2;
		--rp-line:        #22333f;
		--rp-line-soft:   #1a2832;

		--rp-brand:       #081018;
		--rp-brand-2:     #101d27;

		--rp-accent:      #ff8a3d;
		--rp-accent-ink:  #ffab74;
		--rp-accent-wash: #2b1509;
		--rp-accent-solid:#c2490a;

		--rp-secure:      #4fc38d;
		--rp-secure-wash: #0c2a1d;
		--rp-caution:     #dfae54;
		--rp-caution-wash:#2a2010;
		--rp-plain:       #9db1c1;
		--rp-plain-wash:  #1b2a35;

		--rp-shadow:      0 1px 2px rgba(0,0,0,.45);
		--rp-shadow-lift: 0 2px 6px rgba(0,0,0,.45), 0 12px 28px rgba(0,0,0,.4);
	}
}
:root[data-theme="dark"] {
	--rp-ground:#081018; --rp-surface:#101d27; --rp-surface-2:#18262f;
	--rp-ink:#e9eff4; --rp-ink-2:#c5d3dd; --rp-muted:#94a8b6; --rp-faint:#7a92a2;
	--rp-line:#22333f; --rp-line-soft:#1a2832;
	--rp-brand:#081018; --rp-brand-2:#101d27;
	--rp-accent:#ff8a3d; --rp-accent-ink:#ffab74; --rp-accent-wash:#2b1509; --rp-accent-solid:#c2490a;
	--rp-secure:#4fc38d; --rp-secure-wash:#0c2a1d;
	--rp-caution:#dfae54; --rp-caution-wash:#2a2010;
	--rp-plain:#9db1c1; --rp-plain-wash:#1b2a35;
	--rp-shadow:0 1px 2px rgba(0,0,0,.45);
	--rp-shadow-lift:0 2px 6px rgba(0,0,0,.45), 0 12px 28px rgba(0,0,0,.4);
}

/* ==========================================================================
   1. Masthead — logo, navigation and the lookup, in one bar
   ========================================================================== */

.rp-mast {
	background: var(--rp-surface);
	border-bottom: 1px solid var(--rp-line);
	font-family: var(--rp-sans);
	position: relative;
	z-index: 60;
}

.rp-mast__wrap {
	max-width: var(--rp-wrap);
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 64px;
}

/* --- logo --------------------------------------------------------------- */

.rp-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex: 0 0 auto;
	padding: 6px 0;
}
.rp-logo__mark { display: block; width: 30px; height: 30px; flex: 0 0 auto; }
.rp-logo__mark .rp-logo__arc { stroke: var(--rp-accent); }
.rp-logo__mark .rp-logo__dot { fill: var(--rp-ink); }

.rp-logo__word {
	font-family: var(--rp-sans);
	font-size: 21px;
	line-height: 1;
	letter-spacing: -.028em;
	white-space: nowrap;
}
.rp-logo__word b { font-weight: 700; color: var(--rp-ink); }
.rp-logo__word span { font-weight: 500; color: var(--rp-accent); }
.rp-logo:hover .rp-logo__word b { color: var(--rp-brand-2); }

/* --- nav ---------------------------------------------------------------- */

.rp-nav__links {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0 0 0 12px;
	padding: 0;
	flex: 1 1 auto;
}
.rp-nav__links li { margin: 0; }
.rp-nav__links a {
	display: block;
	padding: 21px 13px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -.005em;
	color: var(--rp-ink-2);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: color .15s, border-color .15s;
}
.rp-nav__links a:hover,
.rp-nav__links a:focus-visible { color: var(--rp-accent); border-bottom-color: var(--rp-accent); }
.rp-nav__links .rp-is-current > a { color: var(--rp-accent); border-bottom-color: var(--rp-accent); font-weight: 600; }

.rp-nav__cta {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	border-radius: var(--rp-radius-sm);
	background: var(--rp-accent);
	color: #fff !important;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 0 !important;
	white-space: nowrap;
	transition: background .15s;
}
.rp-nav__cta:hover, .rp-nav__cta:focus-visible { background: var(--rp-accent-ink); color: #fff !important; }

.rp-nav__toggle {
	display: none;
	flex: 0 0 auto;
	align-items: center;
	gap: 8px;
	background: none;
	border: 1px solid var(--rp-line);
	border-radius: var(--rp-radius-sm);
	padding: 9px 13px;
	font-family: var(--rp-sans);
	font-size: 13.5px;
	font-weight: 600;
	color: var(--rp-ink-2);
	cursor: pointer;
	margin-left: auto;
}
.rp-nav__burger { display: block; width: 15px; height: 10px; position: relative; }
.rp-nav__burger::before, .rp-nav__burger::after, .rp-nav__burger span {
	content: ""; position: absolute; left: 0; right: 0; height: 2px;
	background: currentColor; border-radius: 2px;
}
.rp-nav__burger::before { top: 0; }
.rp-nav__burger span    { top: 4px; }
.rp-nav__burger::after  { bottom: 0; }

@media (max-width: 940px) {
	.rp-mast__wrap { flex-wrap: wrap; min-height: 0; padding: 10px 16px; gap: 10px; }
	.rp-nav__toggle { display: inline-flex; }
	.rp-nav__cta { padding: 9px 14px; font-size: 13.5px; }
	.rp-nav__links {
		order: 9;
		flex-basis: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		display: none;
		border-top: 1px solid var(--rp-line-soft);
		margin: 4px 0 0;
	}
	.rp-mast[data-open="true"] .rp-nav__links { display: flex; }
	.rp-nav__links a { padding: 13px 2px; border-bottom: 1px solid var(--rp-line-soft); }
	.rp-nav__links li:last-child a { border-bottom: 0; }
}
@media (max-width: 420px) {
	.rp-logo__word { font-size: 18px; }
	.rp-logo__mark { width: 26px; height: 26px; }
	.rp-nav__cta { padding: 8px 12px; font-size: 13px; }
}

/* the theme's own logo block is replaced by the masthead above */
.rp-hide-theme-logo .elementor-location-header { display: none !important; }

/* ==========================================================================
   2. Breadcrumbs
   ========================================================================== */

.rp-crumbs {
	max-width: var(--rp-wrap);
	margin: 0 auto;
	padding: 14px 20px 0;
	font-family: var(--rp-body);
	font-size: 13.5px;
	color: var(--rp-muted);
}
.rp-crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.rp-crumbs li { display: flex; align-items: center; gap: 6px; margin: 0; }
.rp-crumbs li + li::before { content: "/"; color: var(--rp-faint); }
.rp-crumbs a { color: var(--rp-muted); text-decoration: none; border-bottom: 1px solid transparent; }
.rp-crumbs a:hover { color: var(--rp-accent); border-bottom-color: currentColor; }
.rp-crumbs [aria-current="page"] { color: var(--rp-ink-2); font-weight: 600; }

/* ==========================================================================
   3. Credentials
   ========================================================================== */

.rp-creds { margin: 26px 0 30px; font-family: var(--rp-body); }

.rp-creds__bar {
	display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
	padding: 0 0 14px;
	border-bottom: 1px solid var(--rp-line);
}
.rp-creds__count {
	font-family: var(--rp-sans);
	font-size: 13px; font-weight: 600; color: var(--rp-ink-2); letter-spacing: -.005em;
}
.rp-creds__count b { color: var(--rp-accent); }

.rp-filter { flex: 1 1 210px; max-width: 330px; margin-left: auto; position: relative; }
.rp-filter input {
	width: 100%; box-sizing: border-box;
	padding: 9px 12px 9px 34px;
	font-family: var(--rp-body); font-size: 14.5px; color: var(--rp-ink);
	background: var(--rp-surface);
	border: 1px solid var(--rp-line);
	border-radius: var(--rp-radius-sm);
	line-height: 1.3;
}
.rp-filter input:focus { border-color: var(--rp-accent); outline: 2px solid var(--rp-accent-wash); outline-offset: 0; }
.rp-filter input::placeholder { color: var(--rp-faint); }
.rp-filter__icon { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; pointer-events: none; color: var(--rp-faint); }

.rp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

table.rp-table { width: 100%; border-collapse: collapse; margin: 0; background: transparent; font-size: 14.5px; }
table.rp-table thead th {
	position: sticky; top: 0; z-index: 2;
	background: var(--rp-surface);
	text-align: left;
	font-family: var(--rp-sans);
	font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
	color: var(--rp-faint);
	padding: 12px 14px;
	border-bottom: 1px solid var(--rp-line);
	white-space: nowrap;
}
table.rp-table tbody td {
	padding: 11px 14px;
	white-space: nowrap;
	border-bottom: 1px solid var(--rp-line-soft);
	vertical-align: middle; color: var(--rp-ink-2); line-height: 1.4;
}
table.rp-table tbody tr:hover td { background: var(--rp-surface-2); }
table.rp-table tbody tr:last-child td { border-bottom: 1px solid var(--rp-line); }

.rp-model { font-weight: 600; color: var(--rp-ink); }
.rp-rev   { display: block; font-size: 12px; color: var(--rp-faint); font-weight: 400; margin-top: 1px; }

.rp-val { display: inline-flex; align-items: center; gap: 7px; max-width: 100%; }
.rp-val__text {
	font-family: var(--rp-mono);
	font-size: 13.5px; font-weight: 500; letter-spacing: .01em;
	color: var(--rp-ink);
	background: var(--rp-surface-2);
	border: 1px solid var(--rp-line);
	border-radius: var(--rp-radius-sm);
	padding: 3px 8px;
	/* A password is read as one unit. Breaking it across lines turns
	   "Administrator" into "Administ rator" and invites a typo, so the value
	   never wraps and the table scrolls instead. */
	white-space: nowrap;
}
.rp-val--empty .rp-val__text {
	font-family: var(--rp-body); font-style: italic; color: var(--rp-faint);
	background: transparent; border-style: dashed; letter-spacing: 0;
}

.rp-copy {
	flex: 0 0 auto; width: 26px; height: 26px;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid transparent; border-radius: var(--rp-radius-sm);
	background: transparent; color: var(--rp-faint); cursor: pointer; padding: 0;
	transition: color .15s, background .15s, border-color .15s;
}
.rp-copy svg { width: 14px; height: 14px; display: block; }
.rp-copy:hover { color: var(--rp-accent); background: var(--rp-accent-wash); border-color: var(--rp-line); }
.rp-copy[data-copied="1"] { color: var(--rp-secure); background: var(--rp-secure-wash); border-color: transparent; }

.rp-chip {
	display: inline-block;
	font-family: var(--rp-sans);
	font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
	padding: 3px 8px; border-radius: 100px; white-space: nowrap;
	background: var(--rp-plain-wash); color: var(--rp-plain);
}
.rp-chip--secure    { background: var(--rp-secure-wash);  color: var(--rp-secure); }
.rp-chip--cleartext { background: var(--rp-caution-wash); color: var(--rp-caution); }
.rp-access { font-size: 13px; color: var(--rp-muted); }

@media (max-width: 899px) {
	table.rp-table tbody td { white-space: normal; }
	table.rp-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
	table.rp-table, table.rp-table tbody, table.rp-table tr, table.rp-table td { display: block; width: auto; }
	.rp-table-wrap { overflow-x: visible; }
	table.rp-table tbody tr {
		background: var(--rp-surface);
		border: 1px solid var(--rp-line);
		border-radius: var(--rp-radius);
		box-shadow: var(--rp-shadow);
		padding: 13px 15px 14px;
		margin-bottom: 11px;
	}
	table.rp-table tbody tr:hover td { background: transparent; }
	table.rp-table tbody td { border: 0; padding: 0; }
	table.rp-table tbody td + td { margin-top: 9px; }
	td.rp-td-model { font-size: 16px; padding-bottom: 10px !important; border-bottom: 1px solid var(--rp-line-soft) !important; }
	td.rp-td-proto { margin-top: 10px !important; }
	td.rp-td-user::before, td.rp-td-pass::before, td.rp-td-access::before {
		content: attr(data-label); display: block;
		font-family: var(--rp-sans);
		font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
		color: var(--rp-faint); margin-bottom: 4px;
	}
	.rp-val__text { font-size: 14.5px; padding: 5px 10px; }
	.rp-copy { width: 30px; height: 30px; }
	.rp-copy svg { width: 15px; height: 15px; }
}

.rp-empty {
	padding: 18px 20px;
	border: 1px dashed var(--rp-line);
	border-radius: var(--rp-radius);
	color: var(--rp-muted);
	font-family: var(--rp-body); font-size: 14.5px; line-height: 1.6;
	background: var(--rp-surface-2);
}
.rp-noresult td { text-align: center; color: var(--rp-muted); font-style: italic; padding: 22px 14px !important; }
@media (max-width: 899px) { tr.rp-noresult { box-shadow: none !important; } }

/* ==========================================================================
   4. Fact strip
   ========================================================================== */

.rp-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1px;
	background: var(--rp-line);
	border: 1px solid var(--rp-line);
	border-radius: var(--rp-radius);
	overflow: hidden;
	margin: 22px 0 26px;
	font-family: var(--rp-body);
}
.rp-fact { background: var(--rp-surface); padding: 14px 16px; }
.rp-fact__k {
	display: block;
	font-family: var(--rp-sans);
	font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
	color: var(--rp-faint); margin-bottom: 5px;
}
.rp-fact__v {
	display: block; font-size: 17px; font-weight: 600; color: var(--rp-ink);
	line-height: 1.3; font-variant-numeric: tabular-nums;
	font-family: var(--rp-sans);
}
.rp-fact__v code { font-family: var(--rp-mono); font-size: 15px; background: none; padding: 0; color: var(--rp-ink); }
.rp-fact__v .rp-fact__sub { display: block; font-family: var(--rp-body); font-size: 12.5px; font-weight: 400; color: var(--rp-muted); margin-top: 2px; }

/* ==========================================================================
   5. Lookup
   ========================================================================== */

.rp-lookup { display: flex; flex-wrap: wrap; gap: 10px; align-items: stretch; margin: 0 0 6px; font-family: var(--rp-body); }
.rp-lookup__field { flex: 1 1 260px; position: relative; min-width: 0; }
.rp-lookup label {
	display: block;
	font-family: var(--rp-sans);
	font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
	color: var(--rp-faint); margin-bottom: 6px;
}
.rp-lookup select, .rp-lookup input[type="text"] {
	width: 100%; box-sizing: border-box; height: 48px; padding: 0 14px;
	font-family: var(--rp-body); font-size: 16px; color: var(--rp-ink);
	background: var(--rp-surface); border: 1px solid var(--rp-line);
	border-radius: var(--rp-radius-sm); line-height: 48px;
}
.rp-lookup select:focus, .rp-lookup input:focus { border-color: var(--rp-accent); outline: 2px solid var(--rp-accent-wash); }
.rp-lookup__go {
	flex: 0 0 auto; align-self: flex-end; height: 48px; padding: 0 28px;
	border: 0; border-radius: var(--rp-radius-sm);
	background: var(--rp-accent); color: #fff;
	font-family: var(--rp-sans); font-size: 15px; font-weight: 700; letter-spacing: -.005em;
	cursor: pointer; transition: background .15s;
}
.rp-lookup__go:hover { background: var(--rp-accent-ink); }

/* ==========================================================================
   6. A–Z index
   ========================================================================== */

.rp-az { font-family: var(--rp-body); margin: 8px 0 34px; }
.rp-az__jump {
	display: flex; flex-wrap: wrap; gap: 4px;
	padding: 12px 0 16px;
	border-bottom: 1px solid var(--rp-line);
	margin-bottom: 20px;
	position: sticky; top: 0; z-index: 3;
	background: var(--rp-ground);
}
.rp-az__jump a {
	min-width: 30px; text-align: center; padding: 5px 7px;
	font-family: var(--rp-sans); font-size: 13px; font-weight: 700;
	color: var(--rp-ink-2); text-decoration: none;
	border: 1px solid var(--rp-line); border-radius: var(--rp-radius-sm);
	background: var(--rp-surface);
}
.rp-az__jump a:hover { border-color: var(--rp-accent); color: var(--rp-accent); }

.rp-az__group { margin-bottom: 26px; scroll-margin-top: 64px; }
.rp-az__letter {
	font-family: var(--rp-sans);
	font-size: 13px; font-weight: 700; letter-spacing: .1em;
	color: var(--rp-accent);
	margin: 0 0 10px; padding-bottom: 6px;
	border-bottom: 2px solid var(--rp-accent-wash);
}
.rp-az__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 2px 14px; }
.rp-az__list li { margin: 0; }
.rp-az__list a {
	display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
	padding: 6px 8px; border-radius: var(--rp-radius-sm);
	color: var(--rp-ink-2); text-decoration: none; font-size: 14.5px; line-height: 1.35;
}
.rp-az__list a:hover { background: var(--rp-accent-wash); color: var(--rp-accent-ink); }
.rp-az__n { flex: 0 0 auto; font-size: 12px; color: var(--rp-faint); font-variant-numeric: tabular-nums; }
.rp-az__list a:hover .rp-az__n { color: var(--rp-accent-ink); }

/* ==========================================================================
   7. Related + popular
   ========================================================================== */

.rp-related { margin: 30px 0 10px; font-family: var(--rp-body); }
.rp-related h2 {
	font-family: var(--rp-sans);
	font-size: 12px !important; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
	color: var(--rp-faint); margin: 0 0 12px !important;
}
.rp-related__list { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; margin: 0; padding: 0; }
.rp-related__list li { margin: 0; }
.rp-related__list a {
	display: inline-block; padding: 7px 13px;
	border: 1px solid var(--rp-line); border-radius: 100px;
	background: var(--rp-surface); color: var(--rp-ink-2);
	font-size: 13.5px; text-decoration: none; white-space: nowrap;
}
.rp-related__list a:hover { border-color: var(--rp-accent); color: var(--rp-accent); background: var(--rp-accent-wash); }

.rp-popular { margin: 30px 0 10px; font-family: var(--rp-body); }
.rp-popular__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 10px; }
.rp-popular__grid li { margin: 0; }
.rp-popular__grid a {
	display: flex; flex-direction: column; gap: 3px; padding: 14px 16px;
	background: var(--rp-surface); border: 1px solid var(--rp-line);
	border-radius: var(--rp-radius); text-decoration: none;
	transition: border-color .15s, box-shadow .15s, transform .15s;
}
.rp-popular__grid a:hover { border-color: var(--rp-accent); box-shadow: var(--rp-shadow); transform: translateY(-1px); }
.rp-popular__name { font-family: var(--rp-sans); font-size: 15.5px; font-weight: 700; color: var(--rp-ink); letter-spacing: -.01em; }
.rp-popular__grid a:hover .rp-popular__name { color: var(--rp-accent); }
.rp-popular__n { font-size: 12.5px; color: var(--rp-faint); font-variant-numeric: tabular-nums; }

/* ==========================================================================
   8. Prose and blocks
   ========================================================================== */

.rp-prose { font-family: var(--rp-body); color: var(--rp-ink-2); font-size: 17px; line-height: 1.68; max-width: 70ch; }
.rp-prose p { margin: 0 0 1.05em; }
.rp-prose p:last-child { margin-bottom: 0; }
.rp-prose strong { color: var(--rp-ink); font-weight: 600; }
.rp-prose code {
	font-family: var(--rp-mono); font-size: .88em;
	background: var(--rp-surface-2); border: 1px solid var(--rp-line);
	border-radius: 4px; padding: 1px 5px; color: var(--rp-ink);
	white-space: nowrap;
}
.rp-prose a { color: var(--rp-accent-ink); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.rp-prose a:hover { color: var(--rp-accent); }

.rp-block { margin: 30px 0; }
.rp-block + .rp-block { border-top: 1px solid var(--rp-line-soft); padding-top: 26px; }

.rp-section-h {
	font-family: var(--rp-sans);
	font-size: 21px; font-weight: 700; letter-spacing: -.018em;
	color: var(--rp-ink); margin: 0 0 12px; line-height: 1.28; text-wrap: balance;
}

.rp-note {
	display: flex; gap: 11px; padding: 13px 15px;
	background: var(--rp-surface-2);
	border-left: 3px solid var(--rp-accent);
	border-radius: 0 var(--rp-radius-sm) var(--rp-radius-sm) 0;
	font-family: var(--rp-body); font-size: 14.5px; line-height: 1.6;
	color: var(--rp-ink-2); margin: 22px 0;
}
.rp-note svg { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; color: var(--rp-accent); }
.rp-note a { color: var(--rp-accent-ink); font-weight: 600; }

.rp-updated { font-family: var(--rp-body); font-size: 13.5px; color: var(--rp-faint); margin: 0 0 4px; }
.rp-updated a { color: var(--rp-accent-ink); text-decoration: none; font-weight: 600; }
.rp-updated a:hover { text-decoration: underline; }

/* ==========================================================================
   9. Forms
   ========================================================================== */

.rp-form { font-family: var(--rp-body); max-width: 720px; margin: 22px 0 10px; }
.rp-form__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px 18px; }
.rp-field { display: flex; flex-direction: column; min-width: 0; }
.rp-field--wide { grid-column: 1 / -1; }
.rp-field label {
	font-family: var(--rp-sans);
	font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
	color: var(--rp-faint); margin-bottom: 6px;
}
.rp-field label .rp-req { color: var(--rp-accent); margin-left: 2px; }
.rp-field input, .rp-field select, .rp-field textarea {
	width: 100%; box-sizing: border-box; padding: 11px 12px;
	font-family: var(--rp-body); font-size: 15.5px; color: var(--rp-ink);
	background: var(--rp-surface); border: 1px solid var(--rp-line);
	border-radius: var(--rp-radius-sm); line-height: 1.4;
}
.rp-field input:focus, .rp-field select:focus, .rp-field textarea:focus { border-color: var(--rp-accent); outline: 2px solid var(--rp-accent-wash); }
.rp-field textarea { min-height: 92px; resize: vertical; }
.rp-field--mono input { font-family: var(--rp-mono); font-size: 15px; }
.rp-hint { font-size: 13px; color: var(--rp-muted); margin-top: 5px; line-height: 1.45; }
.rp-hint code { font-family: var(--rp-mono); font-size: .92em; }
.rp-field--err input, .rp-field--err select, .rp-field--err textarea { border-color: #c4341c; }
.rp-err { font-size: 13px; color: #c4341c; margin-top: 5px; font-weight: 600; }

.rp-form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 22px; }
.rp-form__submit {
	padding: 13px 30px; border: 0; border-radius: var(--rp-radius-sm);
	background: var(--rp-accent); color: #fff;
	font-family: var(--rp-sans); font-size: 15.5px; font-weight: 700;
	cursor: pointer; transition: background .15s;
}
.rp-form__submit:hover { background: var(--rp-accent-ink); }
.rp-form__submit:disabled { opacity: .55; cursor: not-allowed; }

.rp-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.rp-alert {
	padding: 14px 16px; border-radius: var(--rp-radius);
	font-family: var(--rp-body); font-size: 15px; line-height: 1.6;
	margin: 0 0 20px; border: 1px solid;
}
.rp-alert--ok  { background: var(--rp-secure-wash); border-color: var(--rp-secure); color: var(--rp-secure); }
.rp-alert--bad { background: #fdecea; border-color: #c4341c; color: #a42c17; }
:root[data-theme="dark"] .rp-alert--bad { background: #2b1310; border-color: #e0654c; color: #f0a494; }
@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) .rp-alert--bad { background: #2b1310; border-color: #e0654c; color: #f0a494; }
}

/* ==========================================================================
   10. Blog
   ========================================================================== */

.rp-postmeta {
	display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
	font-family: var(--rp-body); font-size: 13.5px; color: var(--rp-muted);
	margin: 0 0 22px; padding-bottom: 16px; border-bottom: 1px solid var(--rp-line);
}
.rp-postmeta__cat {
	font-family: var(--rp-sans);
	font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
	color: var(--rp-accent-ink); background: var(--rp-accent-wash);
	padding: 4px 9px; border-radius: 100px; text-decoration: none;
}
.rp-postmeta__cat:hover { background: var(--rp-accent); color: #fff; }

.rp-stale {
	display: flex; gap: 11px; align-items: flex-start;
	padding: 12px 15px; background: var(--rp-caution-wash);
	border: 1px solid var(--rp-caution); border-radius: var(--rp-radius);
	font-family: var(--rp-body); font-size: 14px; line-height: 1.55;
	color: var(--rp-caution); margin: 0 0 24px;
}
.rp-stale svg { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; }

.single-post .elementor-widget-theme-post-content,
.single-post .entry-content { font-size: 17.5px; line-height: 1.72; color: var(--rp-ink-2); font-family: var(--rp-body); }
.single-post .elementor-widget-theme-post-content p,
.single-post .entry-content p { margin: 0 0 1.15em; max-width: 70ch; }
.single-post .elementor-widget-theme-post-content h2,
.single-post .entry-content h2 {
	font-family: var(--rp-sans); font-weight: 700; letter-spacing: -.018em;
	margin: 1.9em 0 .55em; line-height: 1.22; text-wrap: balance; color: var(--rp-ink);
}
.single-post .elementor-widget-theme-post-content h3,
.single-post .entry-content h3 {
	font-family: var(--rp-sans); font-weight: 700; letter-spacing: -.012em;
	margin: 1.6em 0 .45em; line-height: 1.28; text-wrap: balance; color: var(--rp-ink);
}
.single-post .elementor-widget-theme-post-content img,
.single-post .entry-content img { border-radius: var(--rp-radius); }
.single-post .elementor-widget-theme-post-content blockquote,
.single-post .entry-content blockquote {
	margin: 1.8em 0; padding: 4px 0 4px 20px;
	border-left: 3px solid var(--rp-accent);
	font-size: 18.5px; line-height: 1.6; color: var(--rp-ink); font-style: normal;
}

.rp-cardgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 22px; margin: 24px 0 8px; }
.rp-pcard {
	display: flex; flex-direction: column;
	background: var(--rp-surface); border: 1px solid var(--rp-line);
	border-radius: var(--rp-radius); overflow: hidden; box-shadow: var(--rp-shadow);
	transition: box-shadow .18s, transform .18s;
}
.rp-pcard:hover { box-shadow: var(--rp-shadow-lift); transform: translateY(-2px); }
.rp-pcard__thumb { display: block; aspect-ratio: 16 / 9; background: var(--rp-surface-2); overflow: hidden; }
.rp-pcard__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rp-pcard__body { padding: 15px 17px 17px; display: flex; flex-direction: column; gap: 8px; flex: 1 1 auto; }
.rp-pcard__title { font-family: var(--rp-sans); font-size: 16.5px; font-weight: 700; line-height: 1.32; margin: 0; text-wrap: balance; }
.rp-pcard__title a { color: var(--rp-ink); text-decoration: none; }
.rp-pcard__title a:hover { color: var(--rp-accent); }
.rp-pcard__ex { font-family: var(--rp-body); font-size: 14.5px; line-height: 1.55; color: var(--rp-muted); margin: 0; }
.rp-pcard__foot { margin-top: auto; padding-top: 4px; font-family: var(--rp-body); font-size: 12.5px; color: var(--rp-faint); }

@media (prefers-reduced-motion: reduce) {
	.rp-pcard, .rp-pcard:hover, .rp-popular__grid a, .rp-popular__grid a:hover { transition: none; transform: none; }
	* { scroll-behavior: auto !important; }
}

/* ==========================================================================
   11. Advertising
   ========================================================================== */

.rp-ad { display: block; margin: 2rem auto; text-align: center; max-width: 100%; overflow: hidden; clear: both; }
.rp-ad-label {
	display: block; margin-bottom: 6px;
	font-family: var(--rp-sans);
	font-size: 10px; line-height: 1; letter-spacing: .1em; text-transform: uppercase;
	color: var(--rp-faint); font-weight: 600;
}
.rp-ad-unit { display: block; max-width: 100%; margin: 0 auto; }
.rp-ad--auto  { min-height: 100px; }
.rp-ad--fluid { min-height: 90px; }
@media (min-width: 768px) { .rp-ad--auto { min-height: 280px; } }
ins.adsbygoogle, ins.adsbygoogle iframe, .rp-ad iframe { max-width: 100% !important; }

/* ==========================================================================
   12. Utilities + theme alignment
   ========================================================================== */

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

a:focus-visible, button:focus-visible, select:focus-visible,
input:focus-visible, textarea:focus-visible, summary:focus-visible {
	outline: 3px solid var(--rp-accent);
	outline-offset: 2px;
}

.rp-toast {
	position: fixed; left: 50%; bottom: 26px;
	transform: translateX(-50%) translateY(14px);
	background: var(--rp-ink); color: var(--rp-surface);
	font-family: var(--rp-body); font-size: 14.5px;
	padding: 10px 18px; border-radius: 100px;
	box-shadow: var(--rp-shadow-lift);
	opacity: 0; pointer-events: none;
	transition: opacity .18s, transform .18s; z-index: 200;
}
.rp-toast[data-show="1"] { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (prefers-reduced-motion: reduce) { .rp-toast { transition: none; } }

/* Bring the surrounding theme onto the same palette and type, so the new work
   does not sit as an island inside an Astra page. */
body { background: var(--rp-ground); font-family: var(--rp-body); }
.site-content, .ast-container { background: transparent; }

h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.entry-title {
	font-family: var(--rp-sans) !important;
	letter-spacing: -.02em;
	color: var(--rp-ink);
	text-wrap: balance;
}
h1.elementor-heading-title, .entry-title { line-height: 1.16; }

.elementor-widget-text-editor,
.elementor-widget-theme-post-content { font-family: var(--rp-body); color: var(--rp-ink-2); }

@media (max-width: 767px) {
	h1, h1.elementor-heading-title, .entry-title { font-size: clamp(1.6rem, 6.6vw, 2.1rem) !important; line-height: 1.18 !important; }
	h2, h2.elementor-heading-title { font-size: clamp(1.3rem, 5.2vw, 1.65rem) !important; line-height: 1.24 !important; }
}

/* ==========================================================================
   13. Container discipline

   The front page uses Astra's page-builder template, where Elementor sections
   are unconstrained — so the headline, the lookup and the brand grid ran the
   full width of a 27" monitor with an 8px gutter. Everything gets the same
   measure as the rest of the site.
   ========================================================================== */

.ast-page-builder-template .elementor-section > .elementor-container {
	max-width: var(--rp-wrap);
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

/* ==========================================================================
   14. Home hero
   ========================================================================== */

.rp-hero__lead {
	font-family: var(--rp-body);
	font-size: 19px;
	line-height: 1.55;
	color: var(--rp-muted);
	max-width: 58ch;
	margin: 0 0 22px;
}

.rp-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 26px 40px;
	margin: 22px 0 0;
	padding-top: 20px;
	border-top: 1px solid var(--rp-line);
	font-family: var(--rp-body);
}
.rp-hero__stat { display: flex; flex-direction: column; gap: 2px; }
.rp-hero__num {
	font-family: var(--rp-sans);
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -.025em;
	color: var(--rp-ink);
	line-height: 1.1;
	font-variant-numeric: tabular-nums;
}
.rp-hero__lbl {
	font-size: 13.5px;
	color: var(--rp-muted);
	line-height: 1.3;
}

@media (max-width: 600px) {
	.rp-hero__lead { font-size: 17px; }
	.rp-hero__stats { gap: 18px 28px; }
	.rp-hero__num { font-size: 22px; }
}

/* First section sits flush against the masthead on templates that carry no
   breadcrumb row, so the headline had nothing above it. */
.ast-page-builder-template .elementor-location-single > .elementor-section:first-child,
.ast-page-builder-template #content > .ast-container > .elementor:first-child > .elementor-section:first-child {
	padding-top: 34px;
}
body.home .site-content { padding-top: 6px; }

.rp-crumbs + * .elementor-section:first-child { padding-top: 10px; }

/* ==========================================================================
   15. Responsive corrections
   ========================================================================== */

/* Justified text needs hyphenation and a wide measure to work. The legacy
   brand copy has neither, so on a phone it opened rivers of white space
   between words. */
.elementor-widget-text-editor,
.elementor-widget-text-editor p,
.elementor-widget-theme-post-content,
.elementor-widget-theme-post-content p,
.entry-content p {
	text-align: left !important;
	hyphens: none;
}

/* Keep the menu button and the call to action on one row with the logo. */
@media (max-width: 940px) {
	.rp-logo { flex: 0 1 auto; min-width: 0; overflow: hidden; }
	.rp-logo__word { overflow: hidden; text-overflow: ellipsis; }
	.rp-nav__toggle { margin-left: auto; }
	.rp-mast__wrap { gap: 8px; }
}
@media (max-width: 500px) {
	.rp-nav__cta { padding: 8px 11px; font-size: 12.5px; }
	.rp-nav__toggle { padding: 8px 10px; font-size: 12.5px; }
	.rp-logo { gap: 7px; }
	.rp-logo__word { font-size: 16.5px; }
	.rp-logo__mark { width: 24px; height: 24px; }
}
@media (max-width: 380px) {
	.rp-nav__toggle span:not(.rp-nav__burger) { display: none; }
	.rp-nav__toggle { font-size: 0; padding: 9px 11px; }
	.rp-nav__burger { font-size: 0; }
}

/* The fact strip reads as a stack of labelled rows on a phone, so give the
   dividers something to do. */
@media (max-width: 460px) {
	.rp-facts { grid-template-columns: 1fr; }
	.rp-fact { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 12px 15px; }
	.rp-fact__k { margin-bottom: 0; flex: 0 0 auto; }
	.rp-fact__v { text-align: right; font-size: 16px; }
	.rp-fact__v .rp-fact__sub { text-align: right; }
}

.rp-nav__cta-short { display: none; }
@media (max-width: 560px) {
	.rp-nav__cta-full  { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
	.rp-nav__cta-short { display: inline; }
	.rp-nav__cta::before { content: "+"; margin-right: 5px; font-weight: 700; }
}
@media (max-width: 400px) {
	.rp-nav__toggle { font-size: 0; padding: 9px 11px; gap: 0; }
}

/* ==========================================================================
   16. Heading colour

   Astra writes a fixed #3a3a3a onto every heading. Against the light ground
   that is fine, but the dark palette puts dark grey text on a near-black page
   at about 1.6:1 — unreadable. Our own headings always take the token; the
   theme's headings are only overridden in dark mode, so any bespoke heading
   colour set in Elementor survives in light mode.
   ========================================================================== */

.rp-section-h,
.rp-block .rp-section-h,
.rp-popular .rp-section-h,
h2.rp-section-h { color: var(--rp-ink) !important; }

.rp-pcard__title a { color: var(--rp-ink); }

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) h1,
	:root:not([data-theme="light"]) h2,
	:root:not([data-theme="light"]) h3,
	:root:not([data-theme="light"]) h4,
	:root:not([data-theme="light"]) h5,
	:root:not([data-theme="light"]) h6,
	:root:not([data-theme="light"]) .elementor-heading-title,
	:root:not([data-theme="light"]) .entry-title,
	:root:not([data-theme="light"]) .elementor-widget-theme-post-title .elementor-heading-title {
		color: var(--rp-ink) !important;
	}
	:root:not([data-theme="light"]) .elementor-widget-text-editor,
	:root:not([data-theme="light"]) .elementor-widget-text-editor p,
	:root:not([data-theme="light"]) .elementor-widget-theme-post-content,
	:root:not([data-theme="light"]) .elementor-widget-theme-post-content p,
	:root:not([data-theme="light"]) .entry-content,
	:root:not([data-theme="light"]) .entry-content p {
		color: var(--rp-ink-2) !important;
	}
}
:root[data-theme="dark"] h1,
:root[data-theme="dark"] h2,
:root[data-theme="dark"] h3,
:root[data-theme="dark"] h4,
:root[data-theme="dark"] h5,
:root[data-theme="dark"] h6,
:root[data-theme="dark"] .elementor-heading-title,
:root[data-theme="dark"] .entry-title { color: var(--rp-ink) !important; }
:root[data-theme="dark"] .elementor-widget-text-editor,
:root[data-theme="dark"] .elementor-widget-text-editor p,
:root[data-theme="dark"] .elementor-widget-theme-post-content,
:root[data-theme="dark"] .elementor-widget-theme-post-content p,
:root[data-theme="dark"] .entry-content,
:root[data-theme="dark"] .entry-content p { color: var(--rp-ink-2) !important; }

/* ==========================================================================
   17. Contrast corrections

   White on the brand orange measures 3.73:1, and the 10.5px uppercase labels
   measured 3.02:1 — both short of the 4.5:1 that text this size needs. The
   filled buttons take a deeper orange and the label grey is darkened; the
   accent itself is unchanged wherever it sits on a wash or carries no text.
   ========================================================================== */

.rp-nav__cta,
.rp-lookup__go,
.rp-form__submit { background: var(--rp-accent-solid); }
.rp-nav__cta:hover,
.rp-nav__cta:focus-visible,
.rp-lookup__go:hover,
.rp-form__submit:hover { background: var(--rp-accent-ink); }

:root[data-theme="dark"] .rp-nav__cta,
:root[data-theme="dark"] .rp-lookup__go,
:root[data-theme="dark"] .rp-form__submit { background: #b8450a; }
@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) .rp-nav__cta,
	:root:not([data-theme="light"]) .rp-lookup__go,
	:root:not([data-theme="light"]) .rp-form__submit { background: #b8450a; }
}

/* The logo anchor carries no text of its own — the wordmark lives in its two
   children — but leaving it to inherit the theme's colour means anything that
   ever does render directly inside it is unreadable. */
.rp-logo { color: var(--rp-ink); }
