/**
 * Ragany section layouts.
 *
 * One block per section of the design, in the order the design declares them.
 * Values transcribed from "Ragany Home.dc.html".
 *
 * The design's desktop breakpoint is 1120px (state.width >= 1120), so the
 * header swaps to its mobile form there and nowhere else.
 */

/* ============================================================ promo strip == */

.rg-promo {
	width: 100%;
	background: var(--rg-near-black);
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 8px;
	padding: 13px 20px;
	justify-content: center;
	align-items: center;
}

.rg-promo__text,
.rg-promo__link {
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	color: var(--rg-white);
	text-align: center;
}

.rg-promo__link {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.rg-promo__link:hover { color: var(--rg-white); }

/* ================================================================= header == */

.rg-header {
	position: sticky;
	top: 0;
	z-index: 50;
	width: 100%;
	background: var(--rg-white);
	border-bottom: 1px solid var(--rg-line);
}

.rg-header__bar {
	max-width: var(--rg-shell);
	margin: 0 auto;
	padding: 22px var(--rg-gutter);
	display: flex;
	flex-direction: row;
	gap: 24px;
	justify-content: space-between;
	align-items: center;
}

.rg-header__left {
	display: flex;
	flex-direction: row;
	gap: 44px;
	align-items: center;
}

.rg-header__right {
	display: flex;
	flex-direction: row;
	gap: 24px;
	align-items: center;
}

/* -- wordmark ------------------------------------------------------------- */

.rg-logo {
	display: flex;
	flex-direction: row;
	gap: 5px;
	align-items: center;
}

.rg-logo__mark {
	position: relative;
	display: block;
	width: 29.143px;
	height: 32.493px;
	flex-shrink: 0;
}

.rg-logo__mark svg {
	position: absolute;
	left: 0;
	top: 0;
}

/* The inner glyph is offset inside the shield. */
.rg-logo__mark svg + svg {
	left: 7.455px;
	top: 6.03px;
}

.rg-logo__text {
	font-family: var(--rg-brand);
	font-weight: 700;
	font-size: 23.962px;
	line-height: 1;
	color: var(--rg-black);
}

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

.rg-nav {
	display: flex;
	flex-direction: row;
	gap: 30px;
	align-items: center;
}

.rg-nav__item {
	position: relative;
	display: flex;
	align-items: center;
}

.rg-nav__link {
	display: flex;
	flex-direction: row;
	gap: 2px;
	align-items: center;
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	color: var(--rg-nav);
}

.rg-nav__link:hover { color: var(--rg-near-black); }

/* The design rotates a chevron-right by 90deg rather than shipping a caret. */
.rg-nav__caret {
	display: flex;
	transform: rotate(90deg);
	color: inherit;
}

/* The sign-in / language / CTA group. Declared here rather than inline so the
   breakpoint below can actually hide it. */
.rg-nav-utility {
	display: flex;
	flex-direction: row;
	gap: 24px;
	align-items: center;
}

.rg-nav__utility {
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	color: var(--rg-nav);
}

.rg-nav__utility:hover { color: var(--rg-near-black); }

/* -- dropdown ------------------------------------------------------------- */

.rg-drop {
	position: absolute;
	left: -12px;
	top: 100%;
	z-index: 60;
	padding-top: 16px;
	width: 380px;
	visibility: hidden;
	opacity: 0;
	transition: opacity 140ms ease, visibility 140ms ease;
}

.rg-nav__item:hover > .rg-drop,
.rg-nav__item:focus-within > .rg-drop,
.rg-lang.is-open > .rg-drop {
	visibility: visible;
	opacity: 1;
}

.rg-drop__inner {
	border-radius: 16px;
	background: var(--rg-white);
	box-shadow:
		inset 0 0 0 1px var(--rg-line),
		0 12px 32px 0 rgba(0, 0, 0, 0.1);
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.rg-drop__link {
	display: flex;
	flex-direction: row;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 12px;
	align-items: center;
}

.rg-drop__link:hover { background: var(--rg-surface-300); }

.rg-drop__icon {
	display: flex;
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	border-radius: 10px;
	background: var(--rg-surface-200);
	align-items: center;
	justify-content: center;
	color: var(--rg-ink);
}

.rg-drop__copy {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.rg-drop__title {
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.4;
	color: var(--rg-ink);
}

.rg-drop__desc {
	font-family: var(--rg-font);
	font-weight: 400;
	font-size: 13px;
	line-height: 1.45;
	color: var(--rg-muted);
}

/* -- language switcher ---------------------------------------------------- */

/* Reuses the header's dropdown pattern so no new visual language is added.
   The list is narrower than the mega-menus because the rows are one word. */
.rg-lang__toggle {
	display: flex;
	flex-direction: row;
	gap: 2px;
	align-items: center;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	font: inherit;
}

.rg-drop--lang {
	left: auto;
	right: -12px;
	width: auto;
	min-width: 168px;
}

.rg-lang__option .rg-drop__title { white-space: nowrap; }

.rg-lang__option.is-current {
	background: var(--rg-surface-200);
}

.rg-lang__option.is-current .rg-drop__title {
	color: var(--rg-near-black);
}

.rg-mobile__link--lang.is-current {
	color: var(--rg-near-black);
}

/* -- burger + mobile panel ------------------------------------------------ */

.rg-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid var(--rg-line);
	border-radius: 10px;
	background: var(--rg-white);
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.rg-burger span {
	display: block;
	width: 20px;
	height: 1.5px;
	background: var(--rg-ink);
}

.rg-mobile {
	display: none;
	border-top: 1px solid var(--rg-line-soft);
	background: var(--rg-white);
	padding: 12px var(--rg-gutter) 24px;
	flex-direction: column;
	gap: 4px;
}

.rg-mobile.is-open { display: flex; }

.rg-mobile__link {
	padding: 14px 0;
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 17px;
	color: var(--rg-ink);
	border-bottom: 1px solid var(--rg-line-soft);
}

.rg-mobile__link--muted {
	color: var(--rg-muted);
	border-bottom: 0;
}

.rg-mobile__cta {
	margin-top: 8px;
	display: flex;
	height: 53px;
	border-radius: 8px;
	background: var(--rg-near-black);
	align-items: center;
	justify-content: center;
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 16px;
	color: var(--rg-white);
}

.rg-mobile__cta:hover { color: var(--rg-white); }

/* The design's one and only header breakpoint. */
@media (max-width: 1119px) {
	.rg-header__left  { gap: 0; }
	.rg-nav           { display: none; }
	.rg-nav-utility   { display: none; }
	.rg-burger        { display: flex; }
}

@media (min-width: 1120px) {
	.rg-mobile { display: none !important; }
}

/* =================================================================== hero == */

.rg-hero {
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
}

.rg-hero__copy {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
	align-items: center;
}

.rg-hero__copy .rg-eyebrow { align-self: center; }

.rg-hero__title  { max-width: 983px; text-align: center; }
.rg-hero__lead   { max-width: 909px; text-align: center; }

.rg-hero__actions {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 22px;
	padding-block: 14px;
	justify-content: center;
}

.rg-hero__fine { text-align: center; }

/* Screenshot with the design's soft top-left shadow and white fade-out. */
.rg-hero__media {
	position: relative;
	width: 100%;
	max-width: 1294px;
	aspect-ratio: 1294 / 496;
	border-radius: 28px;
	box-shadow: -13px -15px 86px 0 rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.rg-hero__media-img {
	position: absolute;
	inset: 0;
	border-radius: 28px;
	background-position: 50% 0%;
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.rg-hero__media-fade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 23%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 67%);
}

/* -- left-aligned page hero ---------------------------------------------- */

.rg-phero {
	display: flex;
	flex-direction: column;
	gap: clamp(36px, 4.2vw, 60px);
}

.rg-phero__copy {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
}

.rg-phero__title { max-width: 900px; }
.rg-phero__lead  { max-width: 660px; }

.rg-phero__actions {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 14px;
	padding-block: 10px;
	align-items: center;
}

/* Split hero: copy left, decorative art right. */
.rg-phero--split {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
	align-items: center;
}

.rg-phero--split .rg-phero__copy { flex: 1 1 520px; }

/* ========================================================== compatibility == */

.rg-compat {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 32px;
	justify-content: space-between;
	align-items: center;
}

.rg-compat__copy {
	flex: 1 1 420px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

.rg-compat__title { max-width: 494px; color: var(--rg-ink-strong); }

/* The vault page caps the whole column, not just the heading. */
.rg-compat__copy--capped {
	max-width: 494px;
	justify-content: center;
}

.rg-compat__platforms {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 28px 36px;
	padding: 16px 20px;
	align-items: center;
}

.rg-compat__platform {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

/* -- device collage ------------------------------------------------------ */

.rg-collage {
	flex: 1 1 480px;
	position: relative;
	aspect-ratio: 697 / 462;
}

.rg-collage--vault {
	max-width: 697px;
	aspect-ratio: 697 / 464;
}

.rg-collage__back {
	position: absolute;
	left: 12.6%;
	top: 6.9%;
	width: 74.8%;
	height: 71.2%;
	opacity: 0.8;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.rg-collage__laptop {
	position: absolute;
	left: 46.2%;
	top: 33.5%;
	width: 50.8%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.rg-collage__laptop-lid {
	width: 96.7%;
	border-radius: 6px;
	background: #0d0c0e;
	box-shadow:
		inset 0 0 0 1px var(--rg-muted-soft),
		0 4px 15px 1px rgba(0, 0, 0, 0.2);
	padding: 1.4%;
	box-sizing: border-box;
}

.rg-collage__laptop-screen {
	width: 100%;
	aspect-ratio: 332 / 206;
	border-radius: 3px;
	background-color: var(--rg-white);
	background-position: 50% 30%;
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.rg-collage__laptop-hinge {
	width: 100%;
	height: 8px;
	border-radius: 0 0 5px 5px;
	background: var(--rg-dim);
	border-bottom: 1px solid var(--rg-muted-soft);
}

.rg-collage__laptop-shadow {
	width: 88%;
	height: 6px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.24);
}

.rg-collage__browser {
	position: absolute;
	left: 6.7%;
	top: 53.2%;
	width: 45.8%;
	aspect-ratio: 319 / 213;
	border-radius: 6px;
	background-position: 38% 50%;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}

/* Floating glass badges. */
.rg-collage__badge {
	position: absolute;
	width: 9.2%;
	aspect-ratio: 1;
	border-radius: 16px;
	background: rgba(219, 219, 219, 0.9);
	backdrop-filter: blur(4px);
	box-shadow: inset 0 0 0 1px var(--rg-line);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--rg-ink-strong);
}

.rg-collage__badge--1 { left: 13.1%; top: 2.2%; }
.rg-collage__badge--2 { left: 90.8%; top: 24%; }
.rg-collage__badge--3 { left: 1%;    top: 71.6%; }

/* Vault-page collage differs in a handful of offsets. */
.rg-collage--vault .rg-collage__back    { left: 12.63%; top: 6.9%; width: 74.75%; height: 70.9%; }
.rg-collage--vault .rg-collage__laptop  { top: 33.4%; width: 50.75%; opacity: 0.95; }
.rg-collage--vault .rg-collage__laptop-lid    { border-radius: 5.896px; padding: 1.38%; box-shadow: inset 0 0 0 1px var(--rg-muted-soft), 0 4.422px 14.74px 0.59px rgba(0, 0, 0, 0.2); }
.rg-collage--vault .rg-collage__laptop-screen { background-position: 50% 33.775%; background-size: 100% 123.481%; }

.rg-collage__browserwrap {
	position: absolute;
	left: 6.74%;
	top: 53.02%;
	width: 49.07%;
	aspect-ratio: 342 / 213;
}

.rg-collage__browserwrap .rg-collage__browser {
	left: 3.22%;
	top: 0;
	width: 93.29%;
	height: 100%;
	aspect-ratio: auto;
	border-radius: 5.558px;
	background-position: 38.149% 50%;
	background-size: 100.94% 120.855%;
	box-shadow: 0 4.532px 20.394px 0 rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.rg-collage__browserbar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4.7%;
	border-radius: 4px 4px 0 0;
	background-position: -0.207% 0%;
	background-size: 115.125% 2128.889%;
	background-repeat: no-repeat;
}

/* ========================================================= why one account == */

.rg-why {
	display: flex;
	flex-direction: column;
	gap: 42px;
	align-items: flex-start;
	padding: clamp(32px, 4.2vw, 60px) clamp(24px, 3.4vw, 48px);
}

.rg-why__head {
	display: flex;
	flex-direction: column;
	gap: 22px;
	align-items: flex-start;
}

.rg-why__title { max-width: 661px; }

.rg-why__grid {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 24px;
	align-items: flex-start;
}

.rg-why__item {
	flex: 1 1 260px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.rg-why__label {
	font-family: var(--rg-font);
	font-weight: 600;
	font-size: 16px;
	line-height: 1.4;
	color: var(--rg-ink);
}

.rg-why__text {
	font-family: var(--rg-font);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.55;
	color: var(--rg-muted);
}

/* ============================================================ split header == */

/* Heading left, supporting paragraph right. */
.rg-splithead {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: space-between;
	align-items: flex-start;
}

.rg-splithead--end { align-items: flex-end; }

.rg-splithead__copy {
	flex: 1 1 480px;
	display: flex;
	flex-direction: column;
	gap: 22px;
	align-items: flex-start;
}

.rg-splithead__aside { flex: 0 1 494px; }

/* ================================================================== grids == */

.rg-flexgrid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 24px;
	align-items: stretch;
}

.rg-flexgrid > * { flex: 1 1 320px; }

.rg-grid3 {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.rg-grid2 {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

/* The design's own grid collapse points. */
@media (max-width: 1000px) {
	.rg-grid3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
	.rg-grid3 { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 760px) {
	.rg-grid2 { grid-template-columns: minmax(0, 1fr); }
}

/* Card minimum heights, per grid, as the design pins them. */
.rg-card--h260 { min-height: 260px; }
.rg-card--h263 { min-height: 263px; }
.rg-card--h289 { min-height: 289px; }
.rg-card--h298 { min-height: 298px; }
.rg-card--h288 { min-height: 288px; }
.rg-card--h295 { min-height: 295px; }
.rg-card--h245 { min-height: 245px; }

/* ============================================================ feature split == */

.rg-split {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: clamp(32px, 5.2vw, 76px);
	align-items: center;
}

.rg-split--tight { gap: clamp(36px, 5.3vw, 76px); }
.rg-split--wide  { gap: clamp(32px, 5.5vw, 80px); }

.rg-split__copy {
	flex: 1 1 420px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

/* Inner pages cap the copy column; the home page lets it share evenly. */
.rg-split__copy--g22 { gap: 22px; max-width: 540px; }
.rg-split__copy--g24 { gap: 24px; }

.rg-split__media { flex: 1 1 480px; }

/* Bare background image, no frame (Secure share). */
.rg-split__media--bare {
	aspect-ratio: 680 / 413;
	border-radius: 11px;
	background-position: 84% 50%;
	background-size: cover;
	background-repeat: no-repeat;
}

/* Media first in source order, so it lands left on wide screens and stays on
   top once the two columns stack — which is the order the design ships. */
.rg-split--media-first .rg-split__media { order: -1; }

/* ========================================================= password health == */

.rg-health {
	flex: 1 1 440px;
	border-radius: 24px;
	background: var(--rg-surface);
	box-shadow: inset 0 0 0 1px var(--rg-line);
	padding: 10px;
}

.rg-health__inner {
	border-radius: 16px;
	background: var(--rg-white);
	box-shadow: inset 0 0 0 1px var(--rg-line-soft);
	padding: clamp(20px, 2.4vw, 32px);
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.rg-health__head {
	display: flex;
	flex-direction: row;
	gap: 16px;
	justify-content: space-between;
	align-items: center;
}

.rg-health__title {
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6;
	color: var(--rg-ink);
}

.rg-health__row {
	display: flex;
	flex-direction: row;
	gap: 16px;
	padding-block: 18px;
	align-items: center;
}

/* Every row after the first carries the divider. */
.rg-health__row + .rg-health__row { border-top: 1px solid var(--rg-line-faint); }

.rg-health__count {
	display: flex;
	width: 64px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 8px;
	align-items: center;
	justify-content: center;
	font-family: var(--rg-font);
	font-weight: 600;
	font-size: 16px;
}

.rg-health__count--weak   { background: var(--rg-danger-bg); color: var(--rg-danger); }
.rg-health__count--risky  { background: var(--rg-warn-bg);   color: var(--rg-warn); }
.rg-health__count--strong { background: var(--rg-ok-bg);     color: var(--rg-ok); }

.rg-health__copy {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.rg-health__name {
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6;
	color: var(--rg-ink);
}

/* This caption uses Inter at the muted grey, not the softer one. */
.rg-health__desc {
	font-family: var(--rg-ui);
	font-weight: 500;
	font-size: 12px;
	line-height: 1;
	color: var(--rg-muted);
}

/* ============================================================= item types == */

.rg-itemtypes {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
	padding: 24px;
}

.rg-itemtypes__copy {
	flex: 1 1 420px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

.rg-itemtypes__chips {
	flex: 1 1 420px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
	align-items: center;
}

/* ================================================================ pricing == */

.rg-pricing {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.rg-pricing--page { gap: 30px; }

/* Billing toggle. */
.rg-toggle {
	display: flex;
	flex-direction: row;
	gap: 4px;
	padding: 4px;
	border-radius: 999px;
	background: var(--rg-surface);
	box-shadow: inset 0 0 0 1px var(--rg-line);
	align-items: center;
	align-self: flex-start;
}

.rg-toggle--page {
	padding: 5px;
	background: var(--rg-white);
}

.rg-toggle__btn {
	height: 40px;
	padding: 0 20px;
	border: none;
	border-radius: 999px;
	background: transparent;
	color: var(--rg-muted);
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	transition: background 160ms ease, color 160ms ease;
}

.rg-toggle--page .rg-toggle__btn {
	height: 44px;
	padding: 0 26px;
	font-size: 15px;
}

.rg-toggle__btn.is-active {
	background: var(--rg-near-black);
	color: var(--rg-white);
}

/* Plan rail. */
.rg-plans {
	border-radius: 24px;
	background: var(--rg-surface);
	box-shadow: inset 0 0 0 1px var(--rg-line);
	padding: 12px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
	align-items: stretch;
}

.rg-plan {
	flex: 1 1 320px;
	border-radius: 16px;
	background: var(--rg-white);
	box-shadow: inset 0 0 0 1px var(--rg-line);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* The featured plan carries a 2px ring and, on the pricing page, no inset margin. */
.rg-plan--featured { box-shadow: inset 0 0 0 2px var(--rg-muted-soft); }

/* Pricing-page cards are narrower and the outer two sit inset vertically. */
.rg-plans--page .rg-plan { flex: 1 1 300px; gap: 0; }
.rg-plans--page .rg-plan:not(.rg-plan--featured) { margin-block: 14px; }

.rg-plan__head {
	display: flex;
	flex-direction: row;
	gap: 12px;
	justify-content: space-between;
	align-items: center;
}

.rg-plan__head--end { justify-content: flex-end; }

.rg-plan__badge {
	display: flex;
	flex-direction: row;
	gap: 7px;
	height: 26px;
	padding: 0 11px;
	border-radius: 8px;
	background: var(--rg-surface);
	align-items: center;
	font-family: var(--rg-font);
	font-weight: 600;
	font-size: 12px;
	line-height: 1.3;
	letter-spacing: 0.12em;
	color: var(--rg-muted-soft);
	text-transform: uppercase;
}

.rg-plan__badge--hot {
	background: var(--rg-accent);
	color: var(--rg-near-black);
}

.rg-plan__badge--dot {
	background: var(--rg-surface-400);
	color: var(--rg-near-black);
}

/* The pricing page's badge leads with a small solid square. */
.rg-plan__badge-dot {
	display: block;
	width: 9px;
	height: 9px;
	background: var(--rg-near-black);
}

.rg-plan__kind {
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	color: var(--rg-muted-soft);
}

.rg-plan__name { margin-top: 22px; }

.rg-plan__price {
	display: flex;
	flex-direction: row;
	gap: 8px;
	padding: 10px 0 18px;
	align-items: baseline;
}

.rg-plans--page .rg-plan__price { padding: 14px 0 0; }

.rg-plan__amount {
	font-family: var(--rg-font);
	font-weight: 600;
	font-size: 46px;
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: var(--rg-ink);
}

/* The home page's third card sets its amount smaller. */
.rg-plan__amount--sm { font-size: 34px; }

.rg-plan__per {
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	color: var(--rg-muted-soft);
}

.rg-plan__per--fine {
	font-family: var(--rg-ui);
	font-size: 12px;
	line-height: 1;
}

.rg-plans--page .rg-plan__blurb { margin-top: 22px; }

.rg-plan__features {
	display: flex;
	flex-direction: column;
	padding: 24px 0 26px;
}

.rg-plans--page .rg-plan__features { padding: 34px 0 26px; }

.rg-plan__feature {
	padding: 13px 0;
	font-family: var(--rg-font);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: var(--rg-muted);
}

/* Pricing-page rows are ruled; the last one is not. */
.rg-plans--page .rg-plan__feature { border-bottom: 1px solid var(--rg-line-soft); }
.rg-plans--page .rg-plan__feature:last-child { border-bottom: 0; }

/* The "Everything in …, plus:" lead-in is emphasised on the pricing page. */
.rg-plan__feature--lead { font-weight: 500; color: var(--rg-ink); }

.rg-plan__cta { margin-top: auto; }

.rg-pricing__footnote {
	max-width: 900px;
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	color: var(--rg-muted-soft);
}

/* ======================================================== plan comparison == */

.rg-compare {
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: flex-start;
}

.rg-compare__head {
	display: flex;
	flex-direction: column;
	gap: 22px;
	align-items: flex-start;
}

.rg-compare__table {
	width: 100%;
	border-radius: 16px;
	background: var(--rg-white);
	box-shadow: inset 0 0 0 1px var(--rg-line);
	overflow: hidden;
}

/* The columns squash down rather than scrolling, as the design does — at 390px
   the labels wrap to two or three lines and it stays readable. The auto only
   catches an unbreakable value a client might add later; it never fires on the
   design's own content. */
.rg-compare__scroll { overflow-x: auto; }

.rg-compare__row {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
	gap: 16px;
	align-items: center;
	padding: 16px clamp(16px, 2.2vw, 32px);
	border-bottom: 1px solid var(--rg-line);
}

.rg-compare__row:last-child { border-bottom: 0; }

.rg-compare__row--head span {
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.5;
	color: var(--rg-ink);
}

.rg-compare__row--head span + span { text-align: center; }

/* The label is an inline span, as in the design: the line box then combines
   the span's 15px/1.5 with the block's inherited strut, which is what makes a
   group row 2px taller than a feature row. */
.rg-compare__group {
	background: var(--rg-surface-200);
	border-bottom: 1px solid var(--rg-line);
	padding: 18px clamp(16px, 2.2vw, 32px) 14px;
}

.rg-compare__group span {
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.5;
	color: var(--rg-ink);
}

.rg-compare__label {
	font-family: var(--rg-font);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.5;
	color: var(--rg-muted);
}

.rg-compare__cell {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--rg-font);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.5;
	color: var(--rg-muted);
}

/* An absent feature is a short grey rule, not a cross. */
.rg-compare__no {
	display: block;
	width: 12px;
	height: 1.5px;
	background: var(--rg-accent);
}

.rg-compare__note {
	font-family: var(--rg-font);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--rg-muted);
}

/* ============================================================ how it works == */

.rg-steps {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: clamp(36px, 6vw, 88px);
	align-items: flex-start;
}

.rg-steps__copy {
	flex: 1 1 420px;
	display: flex;
	flex-direction: column;
	gap: 28px;
	align-items: flex-start;
}

.rg-steps__title { max-width: 559px; }

/* Inter, weight 400 — lighter than the other fine print. */
.rg-steps__note {
	font-family: var(--rg-ui);
	font-weight: 400;
	font-size: 12px;
	line-height: 1;
	color: var(--rg-surface);
}

.rg-steps__list {
	flex: 1 1 420px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.rg-step {
	display: flex;
	flex-direction: row;
	gap: 20px;
	align-items: flex-start;
}

.rg-step__num {
	width: 30px;
	flex-shrink: 0;
	font-family: var(--rg-font);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
	color: var(--rg-accent);
}

.rg-step__copy {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.rg-step__title {
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6;
	color: var(--rg-white);
}

.rg-step__text {
	font-family: var(--rg-ui);
	font-weight: 500;
	font-size: 12px;
	line-height: 1;
	color: var(--rg-accent);
}

/* ==================================================================== faq == */

.rg-faq {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 48px;
	justify-content: space-between;
	align-items: flex-start;
}

/* Inner pages use a wider gutter between the heading and the list. */
.rg-faq--page { gap: clamp(36px, 6.1vw, 88px); justify-content: flex-start; }

.rg-faq__copy {
	flex: 0 1 446px;
	display: flex;
	flex-direction: column;
	gap: 28px;
	align-items: flex-start;
}

.rg-faq--page .rg-faq__copy { flex: 0 1 420px; gap: 20px; }

.rg-faq__list {
	flex: 1 1 520px;
	display: flex;
	flex-direction: column;
}

.rg-faq--home .rg-faq__list { max-width: 697px; }

.rg-faq__item {
	border-top: 1px solid var(--rg-line);
	padding: 20px 0;
}

.rg-faq__q {
	width: 100%;
	padding: 0;
	border: 0;
	background: none;
	display: flex;
	flex-direction: row;
	gap: 20px;
	align-items: center;
	cursor: pointer;
	text-align: left;
}

.rg-faq__q-text {
	flex-grow: 1;
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: clamp(17px, 1.6vw, 19px);
	line-height: 1.4;
	color: var(--rg-ink);
}

/* Home uses a rotating chevron; inner pages use a +/− glyph. */
.rg-faq__chev {
	display: flex;
	color: var(--rg-ink);
	transform: rotate(90deg);
	transition: transform 200ms ease;
}

.rg-faq__item.is-open .rg-faq__chev { transform: rotate(-90deg); }

.rg-faq--sign .rg-faq__q { gap: 16px; justify-content: space-between; }

.rg-faq--sign .rg-faq__q-text {
	flex-grow: 0;
	font-size: 16px;
	line-height: 1.5;
}

.rg-faq--sign-lg .rg-faq__q-text { font-size: 19px; line-height: 1.4; }

.rg-faq__sign {
	flex-shrink: 0;
	font-family: var(--rg-font);
	font-weight: 400;
	font-size: 22px;
	line-height: 1;
	color: var(--rg-muted-soft);
}

.rg-faq__a {
	margin: 12px 0 0;
	max-width: 640px;
	font-family: var(--rg-font);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: var(--rg-muted);
	text-wrap: pretty;
	display: none;
}

.rg-faq--sign .rg-faq__a { max-width: 620px; font-size: 15px; }
.rg-faq--sign-lg .rg-faq__a { font-size: 16px; }

.rg-faq__item.is-open .rg-faq__a { display: block; }

/* =============================================================== cta band == */

.rg-band {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 32px;
	justify-content: space-between;
	align-items: center;
}

.rg-band__copy {
	flex: 1 1 420px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-start;
}

.rg-band__text { max-width: 620px; }

/* One band sets its supporting line in Inter at 12px. */
.rg-band__text--fine {
	font-family: var(--rg-ui);
	font-weight: 400;
	font-size: 12px;
	line-height: 1;
	color: var(--rg-accent);
}

.rg-band__actions {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

/* ============================================================ closing cta == */

.rg-closing {
	display: flex;
	flex-direction: column;
	gap: 48px;
	align-items: center;
}

.rg-closing__head {
	max-width: 507px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.rg-closing__head .rg-eyebrow { align-self: center; }
.rg-closing__title { text-align: center; }

.rg-ctacard {
	border-radius: 16px;
	background: var(--rg-white);
	box-shadow: inset 0 0 0 1px var(--rg-line);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: space-between;
	min-height: 288px;
}

/* ================================================================= bundle == */

.rg-bundle {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: clamp(28px, 3.3vw, 48px);
	justify-content: space-between;
	align-items: center;
	padding: 24px;
}

.rg-bundle__copy {
	flex: 1 1 420px;
	max-width: 547px;
	display: flex;
	flex-direction: column;
	gap: 22px;
	align-items: flex-start;
}

.rg-bundle__buy {
	flex: 0 1 300px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}

.rg-bundle__price {
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: flex-end;
}

.rg-bundle__note { max-width: 300px; }

/* =========================================================== coming soon == */

/* The design puts the min-height on the shell itself, so its padding counts
   towards the 612px rather than adding to it. */
.rg-soon {
	min-height: 612px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: center;
	align-items: center;
}

.rg-soon .rg-eyebrow { align-self: center; }

.rg-soon__title {
	max-width: 900px;
	font-family: var(--rg-display);
	font-weight: 500;
	font-size: clamp(36px, 4.6vw, 66px);
	line-height: 1.04;
	letter-spacing: -0.015em;
	color: var(--rg-ink);
	text-align: center;
}

.rg-soon__actions {
	display: flex;
	flex-direction: row;
	gap: 14px;
	padding-block: 10px;
	align-items: center;
}

/* =============================================================== vpn hero == */

.rg-vhero { position: relative; }

.rg-vhero__media {
	width: 100%;
	aspect-ratio: 1312 / 509;
	border-radius: 26px;
	background: var(--rg-surface);
	border: 1px solid var(--rg-line);
	padding: 10px;
	overflow: hidden;
}

/* Deliberately over-tall so the screenshot crops at the frame. */
.rg-vhero__media-img {
	width: 100%;
	height: 109%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.rg-vstatus {
	position: absolute;
	right: calc(var(--rg-gutter) + 44px);
	top: 45.8%;
	z-index: 2;
	width: 256px;
	height: 130px;
	border-radius: 12px;
	background: var(--rg-white);
	box-shadow:
		inset 0 0 0 1px var(--rg-line),
		0 10px 28px 0 rgba(20, 26, 51, 0.14);
	padding: 14px 18px;
	display: flex;
	flex-direction: column;
}

/* The design hides this card below 900px (showVpnAccent). */
@media (max-width: 899px) {
	.rg-vstatus { display: none; }
}

.rg-vstatus__row {
	display: flex;
	flex-direction: row;
	gap: 12px;
	align-items: center;
	padding: 0 0 12px;
}

.rg-vstatus__row + .rg-vstatus__row {
	padding: 12px 0;
	border-top: 1px solid var(--rg-line);
}

.rg-vstatus__dot {
	width: 9px;
	height: 9px;
	flex-shrink: 0;
	border-radius: 50%;
}

.rg-vstatus__dot--red   { background: var(--rg-danger); }
.rg-vstatus__dot--amber { background: var(--rg-warn-dot); }

.rg-vstatus__copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.rg-vstatus__title {
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	color: var(--rg-ink);
}

.rg-vstatus__meta {
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 12px;
	line-height: 1.4;
	color: var(--rg-muted-soft);
}

/* =============================================================== download == */

/* Concentric-ring artwork beside the download heading. */
.rg-rings {
	position: relative;
	width: 331px;
	max-width: 100%;
	aspect-ratio: 1;
	flex-shrink: 0;
}

.rg-rings__ring {
	position: absolute;
	border-radius: 50%;
	opacity: 0.35;
	box-shadow: inset 0 0 0 1.137px var(--rg-line-soft);
}

.rg-rings__ring--1 { inset: 0; }
.rg-rings__ring--2 { inset: 12%; }
.rg-rings__ring--3 { inset: 24%; }

.rg-rings__art {
	position: absolute;
	background-repeat: no-repeat;
}

.rg-rings__art--1 {
	left: 42.3%;
	top: 7.55%;
	width: 40.8%;
	height: 40.5%;
	opacity: 0.88;
	mix-blend-mode: luminosity;
	background-position: 52.319% 48.103%;
	background-size: 179.335% 180.673%;
}

.rg-rings__art--2 {
	left: 42.31%;
	top: 51.27%;
	width: 40.87%;
	height: 40.87%;
	mix-blend-mode: luminosity;
	background-position: center;
	background-size: cover;
}

.rg-rings__icon {
	position: absolute;
	left: 8.16%;
	top: 26.3%;
	width: 34.15%;
	height: 34.15%;
	color: var(--rg-accent);
	display: flex;
	align-items: center;
	justify-content: center;
}

.rg-rings__icon svg { width: 100%; height: auto; }

/* Platform card. */
.rg-dlgroup {
	display: flex;
	flex-direction: column;
	gap: 44px;
	align-items: flex-start;
}

.rg-dlgroup__head {
	max-width: 760px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	align-items: flex-start;
}

.rg-dlcard {
	position: relative;
	width: 100%;
	min-height: 232px;
	border-radius: 16px;
	background: var(--rg-white);
	box-shadow: inset 0 0 0 1px var(--rg-line);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
	overflow: hidden;
}

.rg-dlcard__title {
	font-family: var(--rg-display);
	font-weight: 600;
	font-size: 24px;
	line-height: 1.28;
	color: var(--rg-ink);
}

.rg-dlcard__meta {
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	color: var(--rg-muted);
}

.rg-dlcard__cta { display: block; margin-top: 26px; }

/* Corner artwork. The design pins these by absolute left offsets measured at
   the 1440px artboard; the card clips them, exactly as it does in the design. */
.rg-dlcard__art {
	position: absolute;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.rg-dlcard__art--windows { top: 13px; left: 1182px; width: 115px; height: 115px; }
.rg-dlcard__art--chrome  { top: 17px; left: 1217px; width: 81px;  height: 81px; }

.rg-dlcard__art--icon {
	right: 8px;
	top: 8px;
	width: 113px;
	height: 113px;
	color: var(--rg-accent);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* The design stretches this one icon slightly wider than its box. */
.rg-dlcard__art--icon svg {
	width: 123px;
	height: 109px;
}

/* Grey panel CTA. */
.rg-panelcta {
	width: 100%;
	border-radius: 24px;
	background: var(--rg-surface-200);
	padding: clamp(28px, 3.4vw, 48px);
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: space-between;
	align-items: center;
}

.rg-panelcta__copy {
	flex: 1 1 420px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* ================================================================== about == */

/* Oversized, faded brand mark. */
.rg-brandmark {
	position: relative;
	width: 167.267px;
	height: 186.493px;
	flex-shrink: 0;
	opacity: 0.57;
}

.rg-brandmark svg {
	position: absolute;
	left: 0;
	top: 0;
}

.rg-brandmark svg + svg {
	left: 42.788px;
	top: 34.608px;
}

.rg-prose {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: clamp(36px, 6.1vw, 88px);
	align-items: flex-start;
}

.rg-prose__head {
	flex: 0 1 420px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	align-items: flex-start;
}

.rg-prose__body {
	flex: 1 1 520px;
	max-width: 804px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

/* Section head used above the two- and three-up card grids. */
.rg-sechead {
	max-width: 760px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

.rg-sechead--g18 { gap: 18px; }

.rg-secstack {
	display: flex;
	flex-direction: column;
	gap: clamp(34px, 3.6vw, 52px);
	align-items: flex-start;
}

.rg-secstack--g48 { gap: clamp(34px, 3.6vw, 48px); }
.rg-secstack--g54 { gap: clamp(34px, 3.8vw, 54px); align-items: stretch; }
.rg-secstack--g60 { gap: clamp(36px, 4.2vw, 60px); align-items: stretch; }

/* ================================================================ contact == */

.rg-contactcard {
	min-height: 295px;
	border-radius: 16px;
	background: var(--rg-white);
	box-shadow: inset 0 0 0 1px var(--rg-line);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: space-between;
}

.rg-contactcard__group {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
}

.rg-contactcard__email {
	font-family: var(--rg-font);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--rg-dim);
}

.rg-contactcard__email:hover { color: var(--rg-near-black); }

.rg-headset {
	width: 261px;
	height: 261px;
	flex-shrink: 0;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

/* -- form ---------------------------------------------------------------- */

.rg-form {
	flex: 1 1 520px;
	border-radius: 16px;
	background: var(--rg-white);
	box-shadow: inset 0 0 0 1px var(--rg-line);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.rg-form__pair {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 18px;
}

.rg-form__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.rg-form__pair .rg-form__field { flex: 1 1 200px; }

.rg-form__label {
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	color: var(--rg-ink);
}

.rg-form__input,
.rg-form__textarea {
	width: 100%;
	border: 0;
	border-radius: 12px;
	background: var(--rg-surface);
	box-shadow: inset 0 0 0 1px var(--rg-line);
	font-family: var(--rg-font);
	font-weight: 400;
	font-size: 15px;
	color: var(--rg-ink);
	box-sizing: border-box;
}

.rg-form__input {
	height: 54px;
	padding: 0 16px;
}

.rg-form__textarea {
	min-height: 98px;
	padding: 14px 16px;
	line-height: 1.6;
	resize: vertical;
}

.rg-form__input:focus,
.rg-form__textarea:focus {
	outline: 0;
	box-shadow: inset 0 0 0 1px var(--rg-ink);
}

.rg-form__consent {
	display: flex;
	flex-direction: row;
	gap: 12px;
	align-items: center;
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5;
	color: var(--rg-muted);
}

/* The design's checkbox is round. */
.rg-form__consent input {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	border-radius: 50%;
	accent-color: var(--rg-near-black);
}

/* ================================================================ privacy == */

.rg-legal {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: clamp(36px, 5.6vw, 80px);
	align-items: flex-start;
}

.rg-legal__toc {
	flex: 0 1 300px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-start;
}

.rg-legal__toc-label {
	font-family: var(--rg-font);
	font-weight: 600;
	font-size: 12px;
	line-height: 1.3;
	letter-spacing: 0.12em;
	color: var(--rg-muted-soft);
}

.rg-legal__toc-link {
	display: flex;
	flex-direction: row;
	gap: 10px;
	font-family: var(--rg-font);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5;
	color: var(--rg-muted);
}

.rg-legal__toc-link:hover { color: var(--rg-near-black); }
.rg-legal__toc-num { color: var(--rg-accent); }

.rg-legal__body {
	flex: 1 1 560px;
	max-width: 932px;
	display: flex;
	flex-direction: column;
	gap: 34px;
}

.rg-legal__item {
	display: flex;
	flex-direction: column;
	gap: 12px;
	/* Clears the sticky header when jumped to from the table of contents. */
	scroll-margin-top: 120px;
}

.rg-legal__head {
	display: flex;
	flex-direction: row;
	gap: 12px;
	align-items: baseline;
}

.rg-legal__num {
	font-family: var(--rg-font);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
	color: var(--rg-dim);
}

/* ================================================================= footer == */

.rg-footer {
	width: 100%;
	background: var(--rg-near-black);
}

.rg-footer__inner {
	max-width: var(--rg-shell);
	margin: 0 auto;
}

.rg-footer__top {
	padding: clamp(48px, 5.6vw, 80px) var(--rg-gutter) clamp(40px, 4.4vw, 64px);
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 48px 64px;
	align-items: flex-start;
}

.rg-footer__brand {
	flex: 0 1 300px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

/* The footer mark is smaller and inverts the two fills. */
.rg-footer__mark {
	position: relative;
	display: block;
	width: 27.429px;
	height: 30.581px;
	flex-shrink: 0;
}

.rg-footer__mark svg {
	position: absolute;
	left: 0;
	top: 0;
}

.rg-footer__mark svg + svg {
	left: 7.017px;
	top: 5.675px;
}

.rg-footer__wordmark {
	font-family: var(--rg-brand);
	font-weight: 700;
	font-size: 22.552px;
	line-height: 1;
	color: var(--rg-white);
}

.rg-footer__tagline {
	font-family: var(--rg-ui);
	font-weight: 500;
	font-size: 12px;
	line-height: 1;
	color: var(--rg-accent);
}

.rg-footer__cols {
	flex: 1 1 520px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 32px;
	justify-content: space-between;
}

.rg-footer__col {
	flex: 1 1 160px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-start;
}

.rg-footer__coltitle {
	font-family: var(--rg-font);
	font-weight: 600;
	font-size: 12px;
	line-height: 1.3;
	letter-spacing: 0.12em;
	color: var(--rg-white);
	text-transform: uppercase;
}

.rg-footer__link {
	font-family: var(--rg-font);
	font-weight: 400;
	font-size: 15px;
	color: var(--rg-accent);
}

.rg-footer__link:hover { color: var(--rg-white); }

.rg-footer__apps {
	border-top: 1px solid var(--rg-dim);
	padding: 36px var(--rg-gutter);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.rg-footer__approw {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 26px;
	align-items: center;
}

.rg-footer__appslabel {
	min-width: 180px;
	font-family: var(--rg-font);
	font-weight: 600;
	font-size: 12px;
	line-height: 1.3;
	letter-spacing: 0.12em;
	color: var(--rg-muted-soft);
	text-transform: uppercase;
}

.rg-footer__legal {
	border-top: 1px solid var(--rg-dim);
	padding: 28px var(--rg-gutter) 34px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	align-items: center;
}

.rg-footer__legal span {
	font-family: var(--rg-ui);
	font-weight: 500;
	font-size: 12px;
	line-height: 1;
	color: var(--rg-muted-soft);
}
