/* ═══════════════════════════════════════════════════════════════════
   Price Request Sign-Up — Minimalist Modern (Red Edition)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────────── */
:root {
	--crm-black:       #050506;
	--crm-space:       #020203;
	--crm-surface:     #0F0F12;
	--crm-surface-2:   #161619;
	--crm-border:      rgba(255,255,255,0.10);
	--crm-border-hi:   rgba(255,255,255,0.06);
	--crm-accent:      #dd0500;
	--crm-accent-deep: #9e0400;
	--crm-accent-glow: rgba(221,5,0,0.40);
	--crm-text:        rgba(255,255,255,0.92);
	--crm-text-dim:    rgba(255,255,255,0.55);
	--crm-radius:      12px;
	--crm-ease:        cubic-bezier(0.16,1,0.3,1);
	--crm-font:        "Inter", "Montserrat-Regular", Helvetica, Arial, sans-serif;
	--crm-font-head:   "Montserrat-Bold", Helvetica, Arial, sans-serif;
}

html[lang|="ja"] {
	--crm-font:      "Inter", "Montserrat-Regular", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	--crm-font-head: "Montserrat-Bold", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

/* ── Scope reset ────────────────────────────────────────────────── */
.crm-demo {
	position: relative;
	color: var(--crm-text);
	font-family: var(--crm-font);
	font-size: 1rem;
	line-height: 1.6;
	background: var(--crm-space);
	overflow-x: hidden;
	overflow-x: clip;
	isolation: isolate;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

/* ═══════════════════ BACKGROUND SYSTEM ═══════════════════ */
.crm-bg {
	position: absolute;
	inset: 0;
	/* The site header is transparent and sits in flow above <main>, so this
	   layer used to start below it — and `overflow: hidden` then guillotined
	   the red blob flat against main's top edge, leaving a black band under
	   the header. Extend up behind the header so the red reads from the very
	   top. Safe to overlap it: .site-header is z-index 1300, this is 0. */
	top: calc(-1 * var(--crm-header-h, 90px));
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.crm-bg__gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at top, #0a0a0f 0%, var(--crm-space) 70%);
}

.crm-bg__noise {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* Floating blobs — Red-tinted */
.crm-bg__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.14;
}

.crm-bg__blob--1 {
	width: 900px;
	height: 1400px;
	top: -20%;
	left: -15%;
	background: var(--crm-accent);
}

.crm-bg__blob--2 {
	width: 700px;
	height: 1000px;
	bottom: -10%;
	right: -10%;
	background: var(--crm-accent-deep);
}

.crm-bg__blob--3 {
	width: 500px;
	height: 800px;
	top: 40%;
	left: 50%;
	background: #991b1b;
}

/* Dot-grid texture (3% opacity) */
.crm-bg__grid {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,0.30) 1px, transparent 1px);
	background-size: 24px 24px;
	opacity: 0.03;
}

/* ═══════════════════ TYPOGRAPHY ═══════════════════ */

/* Accent text — solid brand red */
.crm-shimmer {
	color: var(--crm-accent);
}

/* ═══════════════════ SCROLL SCRUB (Apple-style fade in/out) ═══════════════════
   Base state only. opacity/transform are driven per scroll frame by
   initScrollScrub() in crm-demo.js — parity with the Company Profile page.
   Deliberately NO transition and no stagger delays: those are for one-shot
   class toggles and would fight the per-frame writes, producing lag. */
.crm-fade-up {
	opacity: 0;
	transform: translateY(6rem);
	will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
	.crm-fade-up {
		opacity: 1;
		transform: none;
	}
}

/* ═══════════════════ HERO SECTION ═══════════════════ */
.crm-hero {
	position: relative;
	z-index: 1;
	padding: 1.5rem 1.5rem 4rem;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.crm-hero__inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

/* Mobile portrait: text on top, form below (natural DOM order) */
@media (max-width: 959px) and (orientation: landscape) {
	.crm-hero {
		min-height: auto;
		padding: 1.25rem 1rem 2.5rem;
		align-items: flex-start;
		overflow: hidden;
	}

	.crm-hero__inner {
		gap: 1.5rem;
	}

	.crm-hero__copy,
	.crm-hero__form-col {
		order: 0;
	}

	/* Too little vertical room to carry the near-square logo below the stats
	   without pushing the form off-screen. */
	.crm-hero__logo {
		display: none;
	}

	.crm-hero__title {
		margin-bottom: 0.95rem;
	}

	.crm-hero__subtitle {
		max-width: 100%;
		margin-bottom: 1.4rem;
	}

	.crm-hero__proof {
		gap: 0.9rem 1.15rem;
	}

	/* No stat-number/stat-label font-size overrides here: this block is declared
	   before the base rules, so at equal specificity they never applied. Landscape
	   uses the base sizes (1.5rem / 0.8rem), which are already legible. */

	.crm-card--form {
		padding: 1.4rem;
	}

}

@media (min-width: 960px) {
	.crm-hero {
		padding: 1.5rem 2rem 4rem;
	}
	.crm-hero__inner {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}

	.crm-hero__copy {
		align-self: start;
		padding-top: 0.75rem;
	}
}

/* Hero copy container — no flex gap between logo and headline */
.crm-hero__copy {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* ═══════════════════ CABINET WATERMARK ═══════════════════ */
/* Out-of-flow, so it can never contribute to layout or push the column
   boundaries around. The admin's Scale drives the *layer* width and the image
   is sized with `contain` inside it — so the whole image always fits and can
   never be clipped at the top or bottom, whatever the scale or column height. */
.crm-hero__cabinet {
	position: absolute;
	/* Centred on the column — same horizontal placement as the exA logo,
	   which centres via `margin: 0 auto` inside this same column. */
	left: 50%;
	/* JS re-applies this translateX(-50%) alongside the parallax translateY —
	   it is what centres the layer, so it must survive the inline transform. */
	transform: translateX(-50%);
	top: 0;
	bottom: 0;
	width: var(--cabinet-scale, 85%);
	z-index: 0;
	pointer-events: none;
	will-change: transform;
	background-image: var(--cabinet-img);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	opacity: var(--cabinet-opacity, 0.12);
}

/* Keep the text above the watermark. */
.crm-hero__copy > *:not(.crm-hero__cabinet) {
	position: relative;
	z-index: 1;
}

@media (max-width: 959px) {
	.crm-hero__copy {
		align-items: center;
		text-align: center;
	}

	.crm-hero__title {
		margin-bottom: 1rem;
	}

	.crm-hero__subtitle {
		margin-left: auto;
		margin-right: auto;
	}

	.crm-hero__proof {
		justify-content: center;
	}

	.crm-hero__stat {
		align-items: center;
		text-align: center;
	}

}

/* Typography matched 1:1 to the System page hero title. */
.crm-hero__title {
	font-family: var(--renewal-system-hero-title-font-family, "Montserrat-Bold", Helvetica, Arial, sans-serif);
	font-style: normal;
	font-size: var(--renewal-page-hero-title-font-size, min(clamp(3rem, 7.5vw, 4.5rem), 13vw, calc(5.48vw - 2.5px)));
	font-weight: var(--renewal-system-hero-title-font-weight, 400);
	line-height: var(--renewal-page-hero-title-line-height, 1.18);
	letter-spacing: var(--renewal-system-hero-title-letter-spacing, normal);
	text-transform: none;
	color: #fff;
	width: 100%;
	max-width: 100%;
	text-wrap: balance;
	overflow-wrap: normal;
	/* Tight to the subtitle. */
	margin: 0 0 0.75rem;
}

@media (max-width: 959px) and (orientation: landscape) {
	.crm-hero__title {
		max-width: 100%;
		overflow: visible;
	}
}

.crm-hero__subtitle {
	font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: clamp(0.95rem, 1.8vw, 1.25rem);
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: -0.01em;
	text-transform: none;
	color: #86868b;
	margin: 0 0 2.5rem;
	max-width: 540px;
}

/* Hero stats */
.crm-hero__proof {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.crm-hero__stat {
	display: flex;
	flex-direction: column;
}

.crm-hero__stat-number {
	font-family: var(--crm-font-head);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #fff;
}

/* Held deliberately below the solid-white number so the description recedes and
   the metric itself carries the emphasis. */
.crm-hero__stat-label {
	font-family: var(--crm-font);
	font-size: 0.9rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.62);
	letter-spacing: 0.01em;
}

/* Exception to the otherwise fluid stat layout: from tablet up, the three
   metrics stay inline on ONE row and each description stays on a single line —
   so a metric is never more than two rows (number, then description).
   `flex: 0 1 auto` rather than `1 1 0` on purpose: equal thirds would starve the
   longest label ("Operator Income - No Revenue Share") and wrap it to a second
   line, pushing that metric to three rows. Sizing to content lets it take the
   width it needs from its shorter neighbours. */
@media (min-width: 600px) {
	.crm-hero__proof {
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 1.5rem;
	}

	.crm-hero__stat {
		flex: 0 1 auto;
	}
}

/* Hover lift on the metrics. Colour/shadow only — no padding or transform, so
   nothing reflows and the one-row mobile stat layout stays intact. Gated on a
   real pointer so it can't stick on touch. */
@media (hover: hover) {
	.crm-hero__stat-number,
	.crm-hero__stat-label {
		transition: color 250ms var(--crm-ease),
		            text-shadow 250ms var(--crm-ease);
	}

	.crm-hero__stat:hover .crm-hero__stat-number {
		text-shadow: 0 0 18px var(--crm-accent-glow);
	}

	.crm-hero__stat:hover .crm-hero__stat-label {
		color: var(--crm-text);
	}
}

/* Mobile portrait: fit all stats in one row */
@media (max-width: 599px) and (orientation: portrait) {
	.crm-hero__proof {
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 0.75rem;
	}

	.crm-hero__stat {
		flex: 1 1 0;
		min-width: 0;
	}

	/* The metric is the thing being emphasised, so it leads decisively — it was
	   previously 1.15rem, i.e. SMALLER than the 20px subtitle next to it. */
	.crm-hero__stat-number {
		font-size: 1.65rem;
	}

	/* Nudged up too, but kept under the 20px subtitle ceiling and well under the
	   number above it so the hierarchy still reads. */
	.crm-hero__stat-label {
		font-size: 1.05rem;
		line-height: 1.35;
	}
}

/* ═══════════════════ CARD SYSTEM ═══════════════════ */
.crm-card {
	position: relative;
	background: var(--crm-surface);
	border: 1px solid var(--crm-border);
	border-radius: var(--crm-radius);
	padding: 2rem;
	overflow: hidden;
	transition: border-color 300ms var(--crm-ease),
	            transform 200ms var(--crm-ease);

	/* Multi-layer Red-tinted shadow */
	box-shadow:
		0 0 0 1px var(--crm-border-hi),
		0 4px 24px rgba(0,0,0,0.4),
		0 1px 2px rgba(0,0,0,0.3);
}

/* ── Form card ──────────────────────────────────────────────────── */
.crm-card--form {
	padding: 2.5rem;
	background: linear-gradient(
		160deg,
		rgba(15,15,18,0.95) 0%,
		rgba(10,10,15,0.98) 100%
	);

	box-shadow:
		0 0 0 1px var(--crm-border-hi),
		0 8px 40px rgba(0,0,0,0.5),
		0 2px 4px rgba(0,0,0,0.3),
		0 0 80px -20px var(--crm-accent-glow);
}

.crm-card__heading {
	font-family: var(--crm-font-head);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 0.375rem;
	color: #fff;
}

.crm-card__sub {
	font-family: var(--crm-font);
	font-size: 0.9rem;
	font-weight: 400;
	color: var(--crm-text-dim);
	margin: 0 0 1.75rem;
}

/* ═══════════════════ HERO LOGO ═══════════════════ */
/* Sits below the stats grid. The wrapper stays full-column-width so the
   admin's Logo Scale (%) keeps resolving against the column — the image
   itself is what centres. */
.crm-hero__logo {
	/* Must span the column. The admin's Logo Scale is a percentage, so it has to
	   resolve against the column width — if this box is allowed to shrink-wrap
	   (which it does under `align-items: center` below 960px), the percentage
	   resolves against the image's own intrinsic width instead and the logo
	   collapses. That intrinsic width is now set by the srcset `sizes` hint, so
	   this is load-bearing, not cosmetic. */
	align-self: stretch;
	width: 100%;
	margin: 3.25rem 0 0 0;
	padding: 0;
	line-height: 0;
}

/* No `brightness(0) invert(1)` here. The asset (exa-logo-white-350dpi.png) is
   already 100% white, so that pair was a no-op round-trip: brightness(0) paints
   every pixel BLACK and invert(1) flips it back to white. It left a fully black
   stage in the filter pipeline, which the compositor could present mid-scroll on
   mobile — the logo "flashing black". Only the glow remains. */
.crm-hero__logo-img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	vertical-align: bottom;
	filter: drop-shadow(0 0 20px var(--crm-accent-glow));
	opacity: 0.95;
	transition: filter 300ms var(--crm-ease);
}

.crm-hero__logo:hover .crm-hero__logo-img {
	filter: drop-shadow(0 0 30px var(--crm-accent-glow));
}

/* ═══════════════════ MAILCHIMP FORM SKIN ═══════════════════ */
.crm-card__mc {
	font-family: var(--crm-font);
}

.crm-card__mc .mc-field-group {
	margin-bottom: 1rem;
}

.crm-card__mc .mc-field-group label {
	display: block;
	font-family: var(--crm-font);
	color: var(--crm-text);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	margin-bottom: 6px;
}

.crm-card__mc .mc-field-group label .asterisk {
	color: var(--crm-accent);
	margin-left: 2px;
}

/* 2-column row for First/Last name */
.crm-card__mc .mc-field-row--2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.crm-card__mc .mc-field-row--2col .mc-field-group {
	margin-bottom: 1rem;
}

/* 3-column row for City/State/Zip */
.crm-card__mc .mc-field-row--3col {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0.75rem;
}

.crm-card__mc .mc-field-row--3col .mc-field-group {
	margin-bottom: 1rem;
}

/* Address group styling */
.crm-card__mc .mc-address-group {
	margin-bottom: 0.5rem;
}

.crm-card__mc .mc-address-group .mc-field-group {
	margin-bottom: 0.75rem;
}

.crm-card__mc .mc-field-help {
	margin: 0.45rem 0 0;
	font-size: 0.78rem;
	line-height: 1.45;
	color: var(--crm-text-dim);
}

/* Mobile: stack address fields */
@media (max-width: 500px) {
	.crm-card__mc .mc-field-row--3col {
		grid-template-columns: 1fr;
	}
}

/* Input / Textarea / Select */
.crm-card__mc input[type="text"],
.crm-card__mc input[type="email"],
.crm-card__mc input[type="tel"],
.crm-card__mc input[type="number"],
.crm-card__mc select,
.crm-card__mc textarea {
	background: #fff;
	border: 1px solid rgba(156,163,175,0.5);
	border-radius: var(--crm-radius);
	color: #111;
	font-family: var(--crm-font);
	font-size: 0.9rem;
	padding: 0.6rem 0.85rem;
	width: 100%;
	transition: border-color 200ms var(--crm-ease),
	            box-shadow 200ms var(--crm-ease);
	outline: none;
}

.crm-card__mc select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 2.8rem;
	background-image:
		linear-gradient(45deg, transparent 50%, rgba(17,17,17,0.78) 50%),
		linear-gradient(135deg, rgba(17,17,17,0.78) 50%, transparent 50%);
	background-position:
		calc(100% - 20px) calc(50% - 3px),
		calc(100% - 14px) calc(50% - 3px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.crm-card__mc textarea {
	min-height: 100px;
	resize: vertical;
}

.crm-card__mc .is-invalid input,
.crm-card__mc .is-invalid select,
.crm-card__mc .is-invalid textarea {
	border-color: var(--crm-accent);
	box-shadow: 0 0 0 3px rgba(221,5,0,0.16);
}

.crm-card__mc .crm-field-error {
	margin-top: 0.45rem;
	font-size: 0.88rem;
	line-height: 1.4;
	font-style: italic;
	font-weight: 700;
	color: var(--crm-accent);
}

/* Focus state — Grey accent */
.crm-card__mc input:focus,
.crm-card__mc select:focus,
.crm-card__mc textarea:focus {
	border-color: rgba(107,114,128,0.8);
	box-shadow: 0 0 0 3px rgba(107,114,128,0.15);
}

/* Placeholder */
.crm-card__mc input::placeholder,
.crm-card__mc textarea::placeholder {
	color: rgba(107,114,128,0.6);
}

/* Submit button — Red gradient */
.crm-card__mc .mc-field-group--submit {
	margin-top: 1.5rem;
	margin-bottom: 0;
}

.crm-card__mc input[type="submit"] {
	background: linear-gradient(135deg, var(--crm-accent), var(--crm-accent-deep));
	color: #fff;
	font-family: var(--crm-font-head);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.01em;
	border: var(--renewal-cta-border-width, 2px) solid transparent;
	border-radius: var(--crm-radius);
	padding: 0.85rem 1.5rem;
	width: 100%;
	cursor: pointer;
	transition: all 200ms var(--crm-ease);
	outline: none;
	box-shadow:
		0 2px 8px rgba(0,0,0,0.3),
		0 0 30px -10px var(--crm-accent-glow);
}

.crm-card__mc input[type="submit"]:hover {
	background: #fff;
	color: var(--crm-accent);
	border-color: var(--crm-accent);
	box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.crm-card__mc input[type="submit"]:active {
	background: #fff;
	color: var(--crm-accent);
	border-color: var(--crm-accent);
	transform: scale(0.95);
	box-shadow: 0 1px 4px rgba(0,0,0,0.15);
	transition: all 80ms ease-out;
}

.crm-card__mc input[type="submit"]:disabled {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

/* Response messages */
.crm-card__mc #mce-responses {
	margin-top: 1rem;
}

.crm-card__mc .crm-response[hidden] {
	display: none !important;
}

.crm-card__mc .crm-response {
	padding: 1rem 1.05rem;
	border-radius: var(--crm-radius);
	border: 1px solid transparent;
}

.crm-card__mc #mce-error-response {
	color: #fff;
	background: linear-gradient(180deg, rgba(127,29,29,0.44), rgba(69,10,10,0.34));
	border-color: rgba(248,113,113,0.3);
}

.crm-card__mc #mce-success-response {
	color: #d1fae5;
	background: linear-gradient(180deg, rgba(6,78,59,0.56), rgba(6,58,45,0.34));
	border-color: rgba(52,211,153,0.28);
}

.crm-card__mc .crm-response__eyebrow {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.82;
}

.crm-card__mc .crm-response__title {
	margin-top: 0.35rem;
	font-family: var(--crm-font-head);
	font-size: 1rem;
	line-height: 1.35;
}

.crm-card__mc .crm-response__body {
	margin-top: 0.35rem;
	font-size: 0.88rem;
	line-height: 1.55;
}

/* Mobile: stack name fields on very small screens */
@media (max-width: 400px) {
	.crm-card__mc .mc-field-row--2col {
		grid-template-columns: 1fr;
	}
}

/* ═══════════════════ LEAN IFRAME CONTAINER ═══════════════════ */
.crm-card--iframe {
	padding-bottom: 1.5rem;
	overflow: hidden;
}

.crm-mc-iframe-wrap {
	/* Mailchimp is cross-origin, so its document height cannot be observed from
	   this page. Keep its bottom-fixed CAPTCHA badge close to the submit control,
	   with a small extra cushion at narrow widths. */
	--crm-iframe-min-height: clamp(1424px, calc(1460px - 4vw), 1444px);
	position: relative;
	width: 100%;
	min-height: var(--crm-iframe-min-height);
	border-radius: var(--crm-radius);
	overflow: hidden;
	background: #000 !important;
	background-color: #000 !important;
	isolation: isolate;
}

.crm-mc-iframe {
	width: 100%;
	height: auto;
	min-height: var(--crm-iframe-min-height);
	max-width: 100%;
	border: 0 !important;
	border-radius: inherit;
	outline: 0 !important;
	background: #000 !important;
	background-color: #000 !important;
	display: block;
}

body.renewal-mobile-menu-open .crm-demo {
	pointer-events: none;
}

body.renewal-mobile-menu-open .crm-mc-iframe-wrap,
body.renewal-mobile-menu-open .crm-mc-iframe {
	pointer-events: none !important;
	visibility: hidden;
}

/* ═══════════════════ MOBILE EXCEPTIONS ═══════════════════
   KEEP THIS BLOCK LAST.

   Most of this stylesheet declares its base rules *after* its @media blocks.
   At equal specificity the later rule wins, so several mobile overrides
   further up (e.g. the .crm-hero__title font-size in the max-width:959px
   block) never actually apply — the desktop value silently wins and the
   title spills to three lines. These are deliberate exceptions pinned at the
   end of the file so they land. */
/* Breathing room above the headline. Portrait only — landscape is
   height-starved (it's why the logo is hidden there) and can't spare it. */
@media (max-width: 959px) and (orientation: portrait) {
	.crm-hero__title {
		margin-top: 2rem;
	}
}

/* The headline's font-size/line-height/letter-spacing are deliberately NOT
   overridden here any more: the title is matched 1:1 to the Distributors page
   at every viewport, so its clamp() is the single source of truth. */

@media (max-width: 959px) {
	/* The blob field is what produced the "flare": three large blurred ellipses
	   positioned as a % of a column whose height is driven by the form iframe,
	   so they land unpredictably on phones. Replace them with a plain vertical
	   wash — black at the top, deepening to red behind the exA logo. */
	.crm-bg__blob {
		display: none;
	}

	/* Alpha stops, so this composites over .crm-demo's --crm-space and the top
	   simply reads as the page black. Offsets are in px from the top of the
	   layer rather than %, because the layer's height follows the form iframe
	   and % stops would drift with it. */
	.crm-bg__gradient {
		background: linear-gradient(
			180deg,
			rgba(221, 5, 0, 0)    0px,
			rgba(221, 5, 0, 0.04) 220px,
			rgba(221, 5, 0, 0.18) 420px,
			rgba(221, 5, 0, 0.30) 540px,  /* peak — sits behind the exA logo */
			rgba(221, 5, 0, 0.12) 700px,
			rgba(221, 5, 0, 0)    880px
		);
	}
}
