/* ============================================================
   RISK RANGER DESIGN SYSTEM v2 — "Precision Engineering"
   Dark authority + technical precision + safety-amber accents
   Shared across all marketing site pages
   ============================================================ */

:root {
	--rr-ink: #0b1120;
	--rr-surface: #f5f6f8;
	--rr-card: #ffffff;
	--rr-muted: #64748b;
	--rr-border: #e2e5eb;
	--rr-purple: #6c5ce7;
	--rr-purple-light: #a29bfe;
	--rr-purple-deep: #4834d4;
	--rr-safety: #f59e0b;
	--rr-safety-light: #fbbf24;
	--rr-cyber: #06b6d4;
	--rr-cyber-light: #22d3ee;
	--rr-green: #10b981;
	--rr-red: #ef4444;
	--rr-radius: 10px;
	--rr-radius-lg: 16px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: 'DM Sans', -apple-system, sans-serif;
	color: var(--rr-ink);
	background: var(--rr-card);
	line-height: 1.65;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
	font-family: 'DM Serif Display', Georgia, serif;
	font-weight: 400;
	line-height: 1.2;
}

.mono {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.85em;
	letter-spacing: -0.02em;
}

a { color: var(--rr-purple); text-decoration: none; }
a:hover { color: var(--rr-purple-deep); }

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

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ============================================================
   UTILITY
   ============================================================ */

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.tag {
	display: inline-block;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.3em 0.9em;
	border-radius: 100px;
}

.tag--amber { background: var(--rr-safety); color: #1a1a1a; }
.tag--cyan { background: var(--rr-cyber); color: #fff; }
.tag--green { background: var(--rr-green); color: #fff; }
.tag--purple { background: var(--rr-purple); color: #fff; }
.tag--red { background: var(--rr-red); color: #fff; }

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'DM Sans', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.8rem 1.8rem;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	line-height: 1.3;
}

.btn--primary {
	background: var(--rr-green);
	color: #fff;
	box-shadow: 0 2px 12px rgba(16, 185, 129, 0.35);
}
.btn--primary:hover {
	background: #059669;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn--outline {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
	border-color: #fff;
	color: #fff;
	background: rgba(255,255,255,0.08);
}

.btn--outline-dark {
	background: transparent;
	color: var(--rr-ink);
	border: 2px solid var(--rr-border);
}
.btn--outline-dark:hover {
	border-color: var(--rr-purple);
	color: var(--rr-purple);
	transform: translateY(-2px);
}

.btn--dark {
	background: var(--rr-ink);
	color: #fff;
}
.btn--dark:hover {
	background: #1e293b;
	color: #fff;
	transform: translateY(-2px);
}

.btn--ghost {
	background: transparent;
	color: var(--rr-purple);
	padding: 0.8rem 0;
	font-weight: 600;
}
.btn--ghost:hover { color: var(--rr-purple-deep); }
.btn--ghost::after { content: ' \2192'; transition: transform 0.2s; display: inline-block; }
.btn--ghost:hover::after { transform: translateX(4px); }

/* ============================================================
   DOT GRID TEXTURE (engineering paper feel)
   ============================================================ */

.dot-grid {
	background-image: radial-gradient(circle, rgba(108, 92, 231, 0.07) 1px, transparent 1px);
	background-size: 28px 28px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideInLeft {
	from { opacity: 0; transform: translateX(-40px); }
	to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
	from { opacity: 0; transform: translateX(40px); }
	to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-cell {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVBAR
   ============================================================ */

.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0 24px;
	transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.nav.scrolled {
	background: rgba(11, 17, 32, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.nav__logo img { height: 32px; }

.nav__links {
	display: flex;
	gap: 2rem;
	list-style: none;
	align-items: center;
}

.nav__links a {
	color: rgba(255,255,255,0.75);
	font-size: 0.9rem;
	font-weight: 500;
	transition: color 0.2s;
	text-decoration: none;
}

.nav__links a:hover { color: #fff; }

.nav__cta {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.nav__cta .btn--primary { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

.nav__login {
	color: rgba(255,255,255,0.75) !important;
	font-size: 0.9rem;
	font-weight: 500;
}
.nav__login:hover { color: #fff !important; }

.nav__mobile-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.nav__mobile-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #fff;
	margin: 5px 0;
	transition: 0.3s;
}

/* Mobile menu overlay */
.nav__mobile-menu {
	display: none;
	position: fixed;
	top: 72px;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(11, 17, 32, 0.98);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 999;
	padding: 2rem 24px;
}

.nav__mobile-menu.open { display: block; }

.nav__mobile-menu a {
	display: block;
	color: rgba(255,255,255,0.8);
	font-size: 1.1rem;
	font-weight: 500;
	padding: 0.8rem 0;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	text-decoration: none;
}

.nav__mobile-menu a:hover { color: #fff; }

.nav__mobile-menu .btn {
	margin-top: 1.5rem;
	width: 100%;
	justify-content: center;
}

/* ============================================================
   PAGE HERO (dark, for sub-pages with breadcrumb)
   ============================================================ */

.page-hero {
	background: var(--rr-ink);
	color: #fff;
	padding: 130px 0 60px;
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 800px 600px at 20% 50%, rgba(108, 92, 231, 0.12), transparent),
		radial-gradient(ellipse 600px 400px at 80% 30%, rgba(6, 182, 212, 0.08), transparent);
	pointer-events: none;
}

.page-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: 32px 32px;
	pointer-events: none;
}

.page-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
}

.page-hero--center .page-hero__inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.page-hero .breadcrumb {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	margin-bottom: 1.5rem;
	font-size: 0.85rem;
}

.page-hero .breadcrumb a {
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	transition: color 0.2s;
}

.page-hero .breadcrumb a:hover { color: #fff; }

.page-hero .breadcrumb .sep {
	color: rgba(255,255,255,0.25);
}

.page-hero .breadcrumb .current {
	color: rgba(255,255,255,0.8);
}

.page-hero h1 {
	font-size: clamp(2rem, 4.5vw, 3rem);
	margin-bottom: 1rem;
	animation: fadeUp 0.6s ease-out 0.1s both;
}

.page-hero h1 em {
	font-style: italic;
	color: var(--rr-purple-light);
}

.page-hero__sub {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.65);
	line-height: 1.7;
	max-width: 600px;
	animation: fadeUp 0.6s ease-out 0.2s both;
}

.page-hero--center .page-hero__sub {
	margin: 0 auto;
}

.page-hero__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 2rem;
	animation: fadeUp 0.6s ease-out 0.3s both;
}

.page-hero--center .page-hero__actions {
	justify-content: center;
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */

.section {
	padding: 80px 0;
}

.section--surface {
	background: var(--rr-surface);
}

.section--dark {
	background: var(--rr-ink);
	color: #fff;
}

.section--dark::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 32px 32px;
	pointer-events: none;
}

.section__header {
	text-align: center;
	margin-bottom: 50px;
}

.section__header h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	margin-bottom: 1rem;
}

.section__header p {
	color: var(--rr-muted);
	font-size: 1.05rem;
	max-width: 600px;
	margin: 0 auto;
}

.section--dark .section__header p {
	color: rgba(255,255,255,0.55);
}

/* ============================================================
   FEATURE CARDS (reusable grid)
   ============================================================ */

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.feature-card {
	background: var(--rr-card);
	border: 1px solid var(--rr-border);
	border-radius: var(--rr-radius);
	padding: 28px 24px;
	transition: all 0.3s;
	text-decoration: none;
	color: inherit;
	display: block;
}

.feature-card:hover {
	border-color: var(--rr-purple);
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(108, 92, 231, 0.1);
	color: inherit;
}

.feature-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.feature-card h4 {
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.feature-card p {
	color: var(--rr-muted);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
}

.feature-card .tag {
	font-size: 0.6rem;
	padding: 0.2em 0.6em;
	margin-left: 0.4rem;
	vertical-align: middle;
}

/* ============================================================
   DETAIL BLOCKS (icon + text, alternating layout)
   ============================================================ */

.detail-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 60px 0;
}

.detail-block:not(:last-child) {
	border-bottom: 1px solid var(--rr-border);
}

.detail-block--reverse {
	direction: rtl;
}

.detail-block--reverse > * {
	direction: ltr;
}

.detail-block__icon {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.detail-block h3 {
	font-size: 1.6rem;
	margin-bottom: 0.75rem;
}

.detail-block p {
	color: var(--rr-muted);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.detail-block__list {
	list-style: none;
	margin-top: 1.2rem;
}

.detail-block__list li {
	padding: 0.45rem 0;
	padding-left: 1.5rem;
	position: relative;
	color: #475569;
	font-size: 0.95rem;
}

.detail-block__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--rr-purple);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-list {
	max-width: 760px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--rr-border);
}

.faq-item__question {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 40px 20px 0;
	font-family: 'DM Sans', sans-serif;
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--rr-ink);
	text-align: left;
	cursor: pointer;
	position: relative;
	line-height: 1.5;
}

.faq-item__question::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--rr-muted);
	transition: transform 0.3s;
}

.faq-item.open .faq-item__question::after {
	content: '\2212';
}

.faq-item__answer {
	display: none;
	padding: 0 0 20px;
	color: var(--rr-muted);
	font-size: 0.95rem;
	line-height: 1.7;
}

.faq-item.open .faq-item__answer {
	display: block;
}

/* ============================================================
   COMPARISON (Old Way vs Risk Ranger)
   ============================================================ */

.comparison__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}

.comparison__col {
	background: var(--rr-card);
	border-radius: var(--rr-radius-lg);
	overflow: hidden;
	border: 1px solid var(--rr-border);
}

.comparison__col-header {
	padding: 20px 28px;
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.comparison__col--old .comparison__col-header {
	background: #fef2f2;
	color: var(--rr-red);
	border-bottom: 1px solid #fecaca;
}

.comparison__col--new .comparison__col-header {
	background: #ecfdf5;
	color: var(--rr-green);
	border-bottom: 1px solid #a7f3d0;
}

.comparison__list {
	list-style: none;
	padding: 8px 0;
}

.comparison__list li {
	padding: 12px 28px;
	font-size: 0.95rem;
	color: #475569;
	border-bottom: 1px solid #f1f5f9;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.comparison__list li:last-child { border-bottom: none; }
.comparison__list li strong { color: var(--rr-ink); }

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
	padding: 100px 0;
	background: var(--rr-ink);
	color: #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.final-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 600px 400px at 30% 50%, rgba(108, 92, 231, 0.15), transparent),
		radial-gradient(ellipse 400px 300px at 70% 50%, rgba(16, 185, 129, 0.1), transparent);
	pointer-events: none;
}

.final-cta__inner {
	position: relative;
	z-index: 1;
}

.final-cta h2 {
	font-size: clamp(2rem, 4.5vw, 3rem);
	margin-bottom: 1rem;
}

.final-cta p {
	color: rgba(255,255,255,0.6);
	font-size: 1.15rem;
	margin-bottom: 2.5rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.final-cta__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
	background: #060a14;
	color: rgba(255,255,255,0.5);
	padding: 60px 0 30px;
	border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.site-footer__brand p {
	font-size: 0.9rem;
	line-height: 1.7;
	max-width: 280px;
	margin-top: 1rem;
}

.site-footer h5 {
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255,255,255,0.8);
	margin-bottom: 1rem;
}

.site-footer ul {
	list-style: none;
}

.site-footer ul li {
	margin-bottom: 0.5rem;
}

.site-footer ul li a {
	color: rgba(255,255,255,0.45);
	font-size: 0.9rem;
	text-decoration: none;
	transition: color 0.2s;
}

.site-footer ul li a:hover { color: #fff; }

.site-footer__bottom {
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.82rem;
}

.site-footer__bottom a {
	color: rgba(255,255,255,0.45);
	margin-left: 1.5rem;
}

/* ============================================================
   PROSE (for blog posts, legal pages, help)
   ============================================================ */

.prose {
	max-width: 760px;
	margin: 0 auto;
	font-size: 1.05rem;
	line-height: 1.8;
	color: #334155;
}

.prose h2 {
	font-size: 1.8rem;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	color: var(--rr-ink);
}

.prose h3 {
	font-size: 1.35rem;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	color: var(--rr-ink);
}

.prose h4 {
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--rr-ink);
}

.prose p {
	margin-bottom: 1.2rem;
}

.prose ul, .prose ol {
	margin-bottom: 1.2rem;
	padding-left: 1.5rem;
}

.prose li {
	margin-bottom: 0.4rem;
}

.prose a {
	color: var(--rr-purple);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.prose a:hover {
	color: var(--rr-purple-deep);
}

.prose strong {
	color: var(--rr-ink);
	font-weight: 600;
}

.prose blockquote {
	border-left: 3px solid var(--rr-purple);
	padding: 1rem 1.5rem;
	margin: 1.5rem 0;
	background: var(--rr-surface);
	border-radius: 0 var(--rr-radius) var(--rr-radius) 0;
	color: var(--rr-muted);
	font-style: italic;
}

.prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
	font-size: 0.95rem;
}

.prose th, .prose td {
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid var(--rr-border);
}

.prose th {
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	background: var(--rr-surface);
	color: var(--rr-ink);
}

/* ============================================================
   FORMS
   ============================================================ */

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	font-family: 'DM Sans', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	color: var(--rr-ink);
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--rr-border);
	border-radius: 8px;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.95rem;
	color: var(--rr-ink);
	background: var(--rr-card);
	transition: border-color 0.2s, box-shadow 0.2s;
	line-height: 1.5;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--rr-purple);
	box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-group .form-hint {
	font-size: 0.82rem;
	color: var(--rr-muted);
	margin-top: 0.35rem;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */

.blog-card {
	background: var(--rr-card);
	border: 1px solid var(--rr-border);
	border-radius: var(--rr-radius-lg);
	overflow: hidden;
	transition: all 0.3s;
	text-decoration: none;
	color: inherit;
	display: block;
}

.blog-card:hover {
	border-color: var(--rr-purple);
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(108, 92, 231, 0.1);
	color: inherit;
}

.blog-card__body {
	padding: 24px;
}

.blog-card__meta {
	font-size: 0.8rem;
	color: var(--rr-muted);
	margin-bottom: 0.75rem;
	display: flex;
	gap: 1rem;
	align-items: center;
}

.blog-card h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: var(--rr-ink);
}

.blog-card p {
	color: var(--rr-muted);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
}

/* ============================================================
   ARTICLE LAYOUT
   ============================================================ */

.article-meta {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--rr-border);
	font-size: 0.9rem;
	color: var(--rr-muted);
}

.article-meta svg {
	width: 16px;
	height: 16px;
	vertical-align: -2px;
	margin-right: 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
	.feature-grid { grid-template-columns: repeat(2, 1fr); }
	.detail-block { grid-template-columns: 1fr; gap: 30px; }
	.detail-block--reverse { direction: ltr; }
	.comparison__grid { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.nav__links { display: none; }
	.nav__mobile-toggle { display: block; }
	.nav__cta .nav__login { display: none; }
	.page-hero { padding: 110px 0 50px; }
	.page-hero h1 { font-size: 1.9rem; }
	.feature-grid { grid-template-columns: 1fr; }
	.section { padding: 60px 0; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 24px; }
	.site-footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
	.site-footer__bottom a { margin-left: 0; margin: 0 0.5rem; }
}
