/*
 * Base layer — global typography, layout wrappers, shared components.
 * Loads after style.css and tokens.css. Blocks reuse these classes,
 * never redefine them (see CLAUDE.md §4).
 */

/* ---------- Global ---------- */

html {
	/* In-page anchors (TOC, #cta links) glide instead of jumping.
	   NOTE: overflow-x:clip must NOT sit on html — Chromium then refuses to
	   run smooth/programmatic scrolls entirely. The sideways-scroll guard
	   lives on #page below instead. */
	scroll-behavior: smooth;
}

#page {
	/* The page never scrolls sideways — wide content must live inside its
	   own scroller (.x61a648cf). clip (not hidden) keeps position:sticky
	   working for the header. */
	overflow-x: clip;
	position: relative; /* anchors the atmosphere layer below */
}

/* Atmosphere: two very soft washes behind the top of the page, so the first
   screen has depth instead of a flat fill. It scrolls away with the page and
   sits at z-index -1, BELOW all content — running text never sits on it. */
#page::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 900px;
	z-index: -1;
	background:
		radial-gradient(70rem 38rem at 12% -12%, color-mix(in srgb, var(--sn-primary) 8%, transparent), transparent 62%),
		radial-gradient(52rem 30rem at 96% -4%, color-mix(in srgb, var(--sn-accent) 7%, transparent), transparent 66%);
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

/* Anchor targets land BELOW the sticky header instead of underneath it
   (header is ~92px: topbar + purple bar), with a little breathing room. */
[id] {
	scroll-margin-top: 116px;
}

body {
	background: var(--sn-bg);
	color: var(--sn-text);
	font-family: var(--sn-font);
	font-size: var(--sn-fs-md);
	line-height: var(--sn-lh-body);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--sn-heading);
	line-height: var(--sn-lh-heading);
	font-family: var(--sn-font-display);
	font-weight: 700;
	letter-spacing: -.015em; /* Plus Jakarta Sans reads better slightly tight */
	clear: both;
}

/* Fluid scale: the fixed sizes were identical on a 375px phone and a 1440px
   desktop, which flattened the section rhythm at both ends. */
h1 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.625rem, 2.4vw, 2.125rem); font-weight: 800; }
h3 { font-size: var(--sn-fs-lg); }

/* Section marker: small rounded blue square in front of every content H2. */
.site-main h2 {
	position: relative;
	padding-left: var(--sn-sp-4);
}

.site-main h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: .42em;
	width: 9px;
	height: 9px;
	border-radius: 3px;
	background: var(--sn-pink);
}

/* Eyebrow label above section headings (reference style) — Michael can drop
   it in a WYSIWYG as <p class="xf7c26923">…</p> right before a heading. */
.xf7c26923 {
	margin: 0 0 var(--sn-sp-1);
	color: var(--sn-primary);
	font-family: var(--sn-font);
	font-size: var(--sn-fs-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .14em;
}

.xf7c26923 + h2,
.xf7c26923 + h3 {
	margin-top: 0;
}

/* Opening paragraph of a section — Michael can set it in a WYSIWYG as
   <p class="x135ba91a">…</p>. Larger and calmer than body text, it gives a
   long guide somewhere to breathe between the heading and the detail. */
.x135ba91a {
	font-size: 1.1875rem;
	line-height: 1.6;
	color: var(--sn-heading);
	font-weight: 500;
}

a {
	color: var(--sn-accent);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--sn-primary-hover);
	text-decoration: underline;
}

a:visited {
	color: var(--sn-accent);
}

/* Links in RUNNING TEXT are underlined, not merely tinted. Measured: the link
   indigo #262678 and the body ink #333333 sit at a 1.02:1 luminance ratio, so
   colour alone leaves a link in a paragraph effectively invisible (WCAG 1.4.1).
   Component links opt out below — chips, cards, menus and the ToC carry their
   own affordance. */
/* :where() zeroes this rule's specificity on purpose, so ANY component rule
   (.x983c3b14, .x14be65a5 a, …) outranks it without a specificity arms race — the
   first version underlined the buttons. */
:where(.site-main p, .site-main li, .site-main td, .site-main th) a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	text-decoration-color: color-mix(in srgb, var(--sn-accent) 35%, transparent);
	transition: color .15s ease, text-decoration-color .15s ease;
}

:where(.site-main p, .site-main li) a:hover,
:where(.site-main p, .site-main li) a:focus {
	text-decoration-color: currentColor;
}

.x14be65a5 a,
.x6c11f572 a,
.x9582e512 a,
.x6d20259c a,
.x38ce86c9 a,
.xb89a556f a,
.xb28975c5 a,
.x983c3b14 {
	text-decoration: none;
}

/* Keyboard focus: one visible ring everywhere instead of the browser default
   (which several components had suppressed). */
:focus-visible {
	outline: 2px solid var(--sn-primary);
	outline-offset: 3px;
	border-radius: var(--sn-radius-sm);
}

/* Native controls inherit the brand. */
input,
select,
textarea {
	accent-color: var(--sn-primary);
	caret-color: var(--sn-primary);
}

img {
	max-width: 100%;
	height: auto;
}

/* Content lists: ONE compact hanging indent. Underscores ships
   `margin: 0 0 1.5em 3em` on top of the browser's ~40px padding-left —
   a double indent that wrecks lists inside callouts and flex layouts.
   Blocks that restyle their own lists (toc, faq, chips, sources…) set
   explicit margins/paddings with class selectors and are unaffected. */
ul,
ol {
	margin: 0 0 1.5em;
	padding-left: var(--sn-sp-6);
}

li > ul,
li > ol {
	margin: var(--sn-sp-1) 0 0;
}

::selection {
	background: var(--sn-accent);
	color: var(--sn-on-chrome);
}

/* ---------- Layout wrappers ---------- */

.x102c3527 {
	width: 100%;
	max-width: var(--sn-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--sn-sp-4);
	padding-right: var(--sn-sp-4);
}

.x70d57b5c {
	width: 100%;
	max-width: var(--sn-content);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--sn-sp-4);
	padding-right: var(--sn-sp-4);
}

@media (min-width: 768px) {
	.x102c3527,
	.x70d57b5c {
		padding-left: var(--sn-sp-6);
		padding-right: var(--sn-sp-6);
	}
}

/* ---------- Buttons ---------- */

/* Solid royal-blue pill with a soft blue shadow that deepens and lifts on
   hover — sentence case, never uppercase (the reference's buttons read as
   product UI, not print labels). */
.x983c3b14 {
	position: relative;
	overflow: hidden; /* clips the hover sheen below */
	display: inline-block;
	padding: var(--sn-sp-3) var(--sn-sp-8);
	border: 0;
	border-radius: var(--sn-radius-sm);
	background: var(--sn-primary);
	/* Ink goes through a custom property so EVERY state reads one value.
	   A context that recolours the button (the white pill on the blue CTA
	   band) sets --sn-btn-ink, never `color` — otherwise :visited below
	   repaints it and the label vanishes. That is a real bug we shipped:
	   white text on a white pill after the visitor came back from the CTA. */
	color: var(--sn-btn-ink, var(--sn-primary-dark));
	font-family: var(--sn-font);
	font-size: var(--sn-fs-sm);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(40, 107, 239, .22);
	transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.x983c3b14:hover,
.x983c3b14:focus {
	background: var(--sn-primary-hover);
	color: var(--sn-btn-ink, var(--sn-primary-dark));
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: var(--sn-glow);
}

/* Without this the browser's default visited colour would win; with the
   custom property it can never fight a context override. */
.x983c3b14:visited {
	color: var(--sn-btn-ink, var(--sn-primary-dark));
}

/* Sheen sweep on hover. This is the button's ONE pseudo-element — do not add
   another ::before here (the arrow on casino CTAs uses ::after). */
.x983c3b14::before {
	content: '';
	position: absolute;
	top: 0;
	left: -60%;
	width: 40%;
	height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
	transform: skewX(-18deg);
	transition: left .55s ease;
	pointer-events: none;
}

.x983c3b14:hover::before,
.x983c3b14:focus::before {
	left: 130%;
}

/* Secondary action: OUTLINED, not a second solid slab. Only conversion
   buttons get filled blue, so an in-content link-out never competes with the
   money CTA — and a dark block mid-article was the heaviest thing on the page. */
.xe5c93cbd {
	--sn-btn-ink: var(--sn-primary);
	background: transparent;
	border: 1.5px solid var(--sn-primary);
	box-shadow: none;
}

.xe5c93cbd:hover,
.xe5c93cbd:focus {
	--sn-btn-ink: var(--sn-primary-hover);
	background: var(--sn-primary-tint);
	border-color: var(--sn-primary-hover);
	box-shadow: none;
	transform: translateY(-2px);
}

/* The shared sheen is white — invisible on a transparent button. */
.xe5c93cbd::before {
	display: none;
}

/* ---------- Images (rendered by blocks) ---------- */

.xfef98559 {
	display: block;
	border-radius: var(--sn-radius);
	height: auto;
	max-width: 100%;
}

/* ---------- Shared table base ---------- */
/* Table blocks wrap their <table class="x06613f36"> in .x61a648cf — mandatory. */

/* White card with a soft border; the scroller clips the rounded corners. */
.x61a648cf {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	background: var(--sn-surface);
	border: 1px solid var(--sn-border);
	border-radius: var(--sn-radius);
	box-shadow: var(--sn-shadow);
}

.x06613f36 {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	font-size: var(--sn-fs-sm);
}

.x06613f36 th,
.x06613f36 td {
	padding: var(--sn-sp-3) var(--sn-sp-4);
	border: 0;
	text-align: left;
	vertical-align: top;
}

/* Tinted header band + indigo label text (no rules — the tint separates). */
.x06613f36 thead th {
	background: var(--sn-surface-2);
	color: var(--sn-heading);
	font-size: var(--sn-fs-xs);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .05em;
	white-space: nowrap;
	border-bottom: 0;
}

.x06613f36 tbody tr {
	background: var(--sn-surface);
	transition: background .15s ease;
}

.x06613f36 tbody td,
.x06613f36 tbody th {
	border-bottom: 1px solid var(--sn-border);
}

.x06613f36 tbody tr:last-child td,
.x06613f36 tbody tr:last-child th {
	border-bottom: 0;
}

.x06613f36 tbody tr:hover {
	background: color-mix(in srgb, var(--sn-accent) 5%, var(--sn-surface));
}

/* WYSIWYG tables (auto-wrapped by sterrennacht_wrap_naked_tables) usually
   keep their header cells in the first body row — style them like a thead.
   Zebra offset: skip the header row when striping. */
.xbbd22fa2 tr:first-child th {
	background: var(--sn-surface-2);
	color: var(--sn-heading);
	font-size: var(--sn-fs-xs);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .05em;
	white-space: nowrap;
	border-bottom: 0;
}

.xbbd22fa2 td {
	min-width: 120px; /* keeps pasted tables readable before the wrap scrolls */
}

/* ---------- Panels ---------- */

.x56f90cd4 {
	background: var(--sn-surface);
	border: 1px solid var(--sn-border);
	border-radius: var(--sn-radius);
	padding: var(--sn-sp-6);
	box-shadow: var(--sn-shadow);
}

@media (min-width: 768px) {
	.x56f90cd4 {
		padding: var(--sn-sp-8);
	}
}

/* ---------- Site header (T1) ---------- */

/* WHITE header lifted off the pale page by a soft blue shadow. The topbar
   stays deep indigo so the 21+ compliance strip keeps its contrast. */
.x5888a530 {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--sn-surface);
	box-shadow: 0 1px 16px rgba(38, 38, 120, .07);
}

.admin-bar .x5888a530 {
	top: 32px;
}

/* Reading progress — sits ON the header's bottom edge, so it covers nothing
   (assets/js/ui.js drives the scale; no JS = a 0-width, invisible bar). */
.xb84b6eb8 {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	overflow: hidden;
	pointer-events: none;
}

.x9b67c41d {
	display: block;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	transform-origin: 0 50%;
	background: linear-gradient(90deg, var(--sn-primary), var(--sn-accent));
	transition: transform .12s linear;
}

.x74e64bce {
	background: var(--sn-purple);
	font-size: var(--sn-fs-xs);
	color: color-mix(in srgb, var(--sn-on-chrome) 80%, transparent);
}

.x85dea572 {
	display: flex;
	align-items: center;
	gap: var(--sn-sp-2);
	padding-top: var(--sn-sp-1);
	padding-bottom: var(--sn-sp-1);
}

.xabd7990a {
	display: inline-flex;
	align-items: center;
	padding: 0 var(--sn-sp-2);
	border: 1px solid var(--sn-gold);
	border-radius: var(--sn-radius-sm);
	color: var(--sn-gold);
	font-weight: 800;
}

.xba396d1b {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sn-sp-4);
	padding-top: var(--sn-sp-3);
	padding-bottom: var(--sn-sp-3);
}

.x60b7526e {
	flex: 0 0 auto;
}

.xeecc402a {
	margin: 0;
	font-family: var(--sn-font-display);
	font-size: 1.625rem;
	font-weight: 700;
	white-space: nowrap;
}

.xeecc402a a {
	color: var(--sn-heading);
	text-decoration: none;
}

.xeecc402a a::after {
	content: '.';
	color: var(--sn-primary);
}

.x5888a530 .custom-logo {
	max-height: 70px;
	width: auto;
}

.x69629ce3 {
	position: relative;
	/* Underscores sets .main-navigation to width:100%; flex keeps the
	   hamburger pinned to the far right on mobile. */
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.x906fcfaf {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--sn-sp-2);
	background: var(--sn-purple-tint);
	border: 1px solid var(--sn-border);
	border-radius: var(--sn-radius-sm);
	color: var(--sn-heading);
	cursor: pointer;
}

.x69629ce3 ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Mobile: dropdown panel (covers both wp_nav_menu ul and wp_page_menu div>ul). */
.x69629ce3 > ul,
.x69629ce3 > div > ul {
	display: none;
	position: absolute;
	right: 0;
	top: calc(100% + var(--sn-sp-2));
	min-width: 220px;
	padding: var(--sn-sp-2);
	background: var(--sn-surface);
	border: 1px solid var(--sn-border);
	border-radius: var(--sn-radius);
	box-shadow: var(--sn-shadow);
}

.x69629ce3.toggled > ul,
.x69629ce3.toggled > div > ul {
	display: block;
}

/* Mobile-first: links live in the white dropdown panel — dark text. */
.x69629ce3 li a {
	display: block;
	padding: var(--sn-sp-2) var(--sn-sp-3);
	border-radius: var(--sn-radius-sm);
	color: var(--sn-text);
	font-size: var(--sn-fs-sm);
	font-weight: 600;
	text-decoration: none;
}

.x69629ce3 li a:hover,
.x69629ce3 li a:focus {
	background: var(--sn-purple-tint);
	color: var(--sn-heading);
	text-decoration: none;
}

.x69629ce3 li.current-menu-item > a,
.x69629ce3 li.current_page_item > a {
	color: var(--sn-accent);
}

/* Chevron on parent items (rotates up when open via .focus — navigation.js). */
.x69629ce3 li.menu-item-has-children > a::after,
.x69629ce3 li.page_item_has_children > a::after {
	content: '';
	display: inline-block;
	margin-left: var(--sn-sp-2);
	border: solid currentColor;
	border-width: 0 2px 2px 0;
	padding: 2.5px;
	transform: translateY(-3px) rotate(45deg);
	transition: transform .15s ease;
}

.x69629ce3 li.menu-item-has-children.focus > a::after,
.x69629ce3 li.page_item_has_children.focus > a::after {
	transform: translateY(1px) rotate(225deg);
}

/* Mobile submenu: nested inline inside the white panel, indented, collapsed
   until the parent gets .focus (tap — handled by navigation.js/nav.js).
   Overrides underscores' absolute/-999em positioning. */
.x69629ce3 ul ul {
	display: none;
	position: static;
	float: none;
	margin: var(--sn-sp-1) 0 var(--sn-sp-1) var(--sn-sp-3);
	padding: 0 0 0 var(--sn-sp-2);
	border-left: 2px solid color-mix(in srgb, var(--sn-accent) 25%, transparent);
	box-shadow: none;
}

.x69629ce3 li.focus > ul {
	display: block;
	left: auto;
}

/* Underscores force-opens all nested uls when .toggled — collapse them back
   so the mobile submenu is a tap-to-expand accordion (chevron on parent). */
.x69629ce3.toggled ul ul {
	display: none;
}

.x69629ce3.toggled li.focus > ul {
	display: block;
}

.x69629ce3 ul ul a {
	width: auto; /* underscores forces 200px */
	font-weight: 500;
}

@media (min-width: 768px) {
	.x906fcfaf {
		display: none;
	}

	.x69629ce3 {
		justify-content: flex-start; /* Desktop: menu sits next to the logo. */
	}

	.x69629ce3 > ul,
	.x69629ce3 > div > ul {
		display: flex !important; /* Beat underscores' .main-navigation rules. */
		position: static;
		gap: var(--sn-sp-1);
		min-width: 0;
		padding: 0;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	/* Desktop: dark links on the white bar, blue underline on hover/active
	   (no pill background). */
	.x69629ce3 li a {
		color: var(--sn-text);
		border-bottom: 2px solid transparent;
		border-radius: 0;
	}

	.x69629ce3 li a:hover,
	.x69629ce3 li a:focus {
		background: transparent;
		color: var(--sn-heading);
		border-bottom-color: var(--sn-primary);
	}

	.x69629ce3 li.current-menu-item > a,
	.x69629ce3 li.current_page_item > a {
		color: var(--sn-heading);
		border-bottom-color: var(--sn-primary);
	}

	/* Desktop dropdown: white card under the parent item. Opens on hover,
	   keyboard focus, or click (.focus via nav.js). */
	.x69629ce3 ul ul {
		display: none;
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		min-width: 230px;
		margin: 0;
		padding: var(--sn-sp-2);
		background: var(--sn-surface);
		border: 1px solid var(--sn-border);
		border-radius: var(--sn-radius);
		box-shadow: var(--sn-shadow);
	}

	/* Invisible bridge so the pointer can cross the gap without closing. */
	.x69629ce3 ul ul::before {
		content: '';
		position: absolute;
		top: -12px;
		left: 0;
		right: 0;
		height: 12px;
	}

	.x69629ce3 li:hover > ul,
	.x69629ce3 li:focus-within > ul,
	.x69629ce3 li.focus > ul {
		display: block;
		left: 0;
	}

	/* Dropdown links sit on a white card — dark text (overrides the
	   white-on-purple rule above). */
	.x69629ce3 ul ul li a {
		color: var(--sn-text);
	}

	.x69629ce3 ul ul li a:hover,
	.x69629ce3 ul ul li a:focus {
		background: var(--sn-purple-tint);
		color: var(--sn-heading);
	}

	.x69629ce3 ul ul li.current-menu-item > a,
	.x69629ce3 ul ul li.current_page_item > a {
		color: var(--sn-accent);
	}

	/* Chevron opens on hover too. */
	.x69629ce3 li.menu-item-has-children:hover > a::after,
	.x69629ce3 li.page_item_has_children:hover > a::after {
		transform: translateY(1px) rotate(225deg);
	}
}

/* ---------- Site footer (T2) — "Blue Ribbon" ---------- */
/* Deep indigo deck under a curved top edge (mirrors the hero's bottom arc):
   brand | two menus | the responsible-gambling CARD, then a slim bottom bar. */

.x6b594c86 {
	position: relative;
	margin-top: var(--sn-sp-16);
	background: var(--sn-purple-deep);
	color: color-mix(in srgb, var(--sn-on-chrome) 62%, transparent);
	font-size: var(--sn-fs-sm);
	border-top: 3px solid var(--sn-primary);
	/* The arc curves the blue rule with it. Top padding must clear the depth. */
	border-top-left-radius: 50% 30px;
	border-top-right-radius: 50% 30px;
}

/* Row 1: the four-column deck. */
.xce9bea7d {
	display: grid;
	gap: var(--sn-sp-8);
	padding: var(--sn-sp-12) 0 var(--sn-sp-8);
}

.x0630943e {
	margin: 0 0 var(--sn-sp-3);
	color: var(--sn-on-chrome);
	font-family: var(--sn-font-display);
	font-size: var(--sn-fs-lg);
	font-weight: 800;
	letter-spacing: -.015em;
}

.x0630943e::after {
	content: '.';
	color: var(--sn-primary);
}

.xe0a083ec {
	margin: 0;
	max-width: 42ch;
}

.xce9bea7d > * {
	min-width: 0; /* grid children must be allowed to shrink below content */
}

/* Both menus live in one grid cell (see the 1024px rule). */
.x4f21d1df {
	display: flex;
	flex-direction: column;
	gap: var(--sn-sp-8);
}

.x3516a5a3 {
	min-width: 0;
	flex: 1 1 auto;
}

.x56236ed2 {
	margin: 0 0 var(--sn-sp-4);
	color: var(--sn-on-chrome);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: var(--sn-fs-xs);
}

.xb6f69b12 {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--sn-sp-3);
}

.xb6f69b12 a {
	color: color-mix(in srgb, var(--sn-on-chrome) 62%, transparent);
	text-decoration: none;
	transition: color .15s ease, padding-left .15s ease;
}

.xb6f69b12 a:hover,
.xb6f69b12 a:focus {
	color: var(--sn-on-chrome);
	padding-left: var(--sn-sp-2);
	text-decoration: none;
}

/* The compliance card — sits in the deck, not in a strip below it. */
.x645f9749 {
	display: flex;
	flex-direction: column;
	gap: var(--sn-sp-4);
	padding: var(--sn-sp-6);
	background: color-mix(in srgb, var(--sn-on-chrome) 6%, transparent);
	border: 1px solid color-mix(in srgb, var(--sn-on-chrome) 12%, transparent);
	border-left: 3px solid var(--sn-primary);
	border-radius: var(--sn-radius);
}

.x61de2e37 {
	display: flex;
	align-items: flex-start;
	gap: var(--sn-sp-3);
}

.x61de2e37 p {
	margin: 0;
	color: color-mix(in srgb, var(--sn-on-chrome) 86%, transparent);
}

.xff86916b {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: var(--sn-sp-2);
	margin: 0;
	padding: 0;
}

/* Outlined chips — deliberately NOT the action colour (compliance links
   are informational, CLAUDE.md §7). */
.xff86916b a {
	display: inline-block;
	padding: var(--sn-sp-1) var(--sn-sp-3);
	border: 1px solid color-mix(in srgb, var(--sn-on-chrome) 28%, transparent);
	border-radius: var(--sn-radius-pill);
	color: color-mix(in srgb, var(--sn-on-chrome) 80%, transparent);
	font-size: var(--sn-fs-xs);
	font-weight: 600;
	text-decoration: none;
	transition: border-color .15s ease, color .15s ease, background .15s ease;
}

.xff86916b a:hover,
.xff86916b a:focus {
	background: color-mix(in srgb, var(--sn-on-chrome) 8%, transparent);
	border-color: color-mix(in srgb, var(--sn-on-chrome) 65%, transparent);
	color: var(--sn-on-chrome);
	text-decoration: none;
}

/* Row 2: copyright + disclosure. */
.x7be3a713 {
	display: flex;
	flex-direction: column;
	gap: var(--sn-sp-2);
	padding: var(--sn-sp-6) 0;
	border-top: 1px solid color-mix(in srgb, var(--sn-on-chrome) 10%, transparent);
	font-size: var(--sn-fs-xs);
	color: color-mix(in srgb, var(--sn-on-chrome) 45%, transparent);
}

.x6768ea9c,
.x791ce7c3 {
	margin: 0;
}

@media (min-width: 768px) {
	.x6b594c86 {
		border-top-left-radius: 50% 44px;
		border-top-right-radius: 50% 44px;
	}

	.xce9bea7d {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--sn-sp-8) var(--sn-sp-12);
	}

	.x4f21d1df {
		flex-direction: row;
		gap: var(--sn-sp-12);
	}

	.x7be3a713 {
		flex-direction: row;
		align-items: baseline;
		justify-content: space-between;
		gap: var(--sn-sp-8);
	}

	.x791ce7c3 {
		text-align: right;
		max-width: 62ch;
	}
}

@media (min-width: 1024px) {
	/* Exactly three columns — brand, the menu cell, the compliance card. The
	   menus share ONE cell so an unassigned menu location cannot change the
	   column count and squash the brand text. */
	.xce9bea7d {
		grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.6fr) minmax(250px, 1.3fr);
		gap: var(--sn-sp-12);
		padding-top: var(--sn-sp-16);
	}
}

/* ---------- Scroll reveal ---------- */
/* COMPLIANCE BY CONSTRUCTION: the hidden state exists ONLY under .x5b7e317d,
   which assets/js/reveal.js adds after its prefers-reduced-motion check, and
   only for blocks still below the fold. No JS = nothing is ever hidden. */

.x5b7e317d .x53d2f121 {
	opacity: 0;
	transform: translateY(14px);
}

.x5b7e317d .x53d2f121.is-inview {
	opacity: 1;
	transform: none;
	transition: opacity .5s ease, transform .5s ease;
}

@media (prefers-reduced-motion: reduce) {
	.x5b7e317d .x53d2f121,
	.x5b7e317d .x53d2f121.is-inview {
		opacity: 1;
		transform: none;
		transition: none;
	}

	/* Decorative motion off: the progress bar and the button sheen carry no
	   information, so they simply disappear. */
	.xb84b6eb8 {
		display: none;
	}

	.x983c3b14::before {
		display: none;
	}
}

/* ---------- Utilities ---------- */

/* Soft arc on the bottom edge of a full-bleed band — the reference's
   signature section transition. Apply to a section that sits directly on
   the page background. */
.x6f8e9376 {
	border-bottom-left-radius: 50% 40px;
	border-bottom-right-radius: 50% 40px;
}

.x1c04dea4 {
	color: var(--sn-text-muted);
	font-size: var(--sn-fs-sm);
}

.screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}
