.geo-page {
	--geo-radius-sm: 12px;
	--geo-radius: 20px;
	--geo-radius-lg: 28px;
	--geo-border: 1px solid rgba(0, 0, 0, 0.06);
	--geo-border-strong: 1px solid rgba(0, 0, 0, 0.10);
	--geo-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
	--geo-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
	--geo-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
	--geo-shadow-milka: 0 12px 32px rgba(185, 150, 247, 0.10);
	--geo-bg-soft: #fafafa;
	--geo-bg-tint: rgba(185, 150, 247, 0.06);
	--geo-bg-tint-strong: rgba(185, 150, 247, 0.12);
	--geo-text-muted: #6c757d;
	--geo-text-dim: #9aa0a6;
	--geo-transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.geo-page section {
	scroll-margin-top: 90px;
}

.geo-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.95rem;
	background: var(--geo-bg-tint);
	color: #8a6ed5;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	border: 1px solid rgba(185, 150, 247, 0.18);
}
.geo-eyebrow i { font-size: 0.85rem; }

.geo-hero {
	padding: 3rem 0 4rem;
	text-align: center;
}
.geo-hero__title {
	font-family: 'Dongle', cursive;
	font-size: clamp(3rem, 7vw, 5.5rem);
	line-height: 0.95;
	letter-spacing: -0.02em;
	margin: 1rem 0 1.25rem;
	color: #221F1F;
}
.geo-hero__subtitle {
	font-size: clamp(1.05rem, 1.8vw, 1.4rem);
	color: var(--geo-text-muted);
	max-width: 760px;
	margin: 0 auto;
	line-height: 1.5;
}
.geo-hero__meta {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	justify-content: center;
	margin-top: 1.5rem;
	font-size: 0.78rem;
	color: var(--geo-text-dim);
	letter-spacing: 0.04em;
}
.geo-hero__meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.geo-hero__meta i { color: #B996F7; }

.geo-section {
	padding: 3rem 0;
}
.geo-section--tight { padding: 2rem 0; }
.geo-section--soft {
	background: var(--geo-bg-soft);
	border-radius: var(--geo-radius-lg);
	padding: 3.5rem 1.5rem;
	margin: 2rem 0;
}

.geo-section-head {
	text-align: center;
	margin-bottom: 2.5rem;
}
.geo-section-head__title {
	font-family: 'Dongle', cursive;
	font-size: clamp(2.25rem, 4vw, 3.5rem);
	line-height: 1;
	letter-spacing: -0.01em;
	margin-bottom: 0.5rem;
	color: #221F1F;
}
.geo-section-head__sub {
	color: var(--geo-text-muted);
	max-width: 640px;
	margin: 0 auto;
	font-size: 1.05rem;
}

.geo-divider {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 3.5rem 0 1.5rem;
}
.geo-divider::before, .geo-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(0, 0, 0, 0.08);
}
.geo-divider__label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--geo-text-dim);
}

.geo-card {
	background: #fff;
	border: var(--geo-border);
	border-radius: var(--geo-radius);
	padding: 1.75rem;
	transition: transform var(--geo-transition), box-shadow var(--geo-transition), border-color var(--geo-transition);
	height: 100%;
}
a.geo-card,
.geo-card--link { display: block; text-decoration: none; color: inherit; }
a.geo-card:hover,
.geo-card--hover:hover {
	transform: translateY(-3px);
	box-shadow: var(--geo-shadow-milka);
	border-color: rgba(185, 150, 247, 0.45);
}

.geo-stat {
	background: #fff;
	border: var(--geo-border);
	border-radius: var(--geo-radius);
	padding: 2rem 1.25rem;
	text-align: center;
	height: 100%;
	transition: transform var(--geo-transition), box-shadow var(--geo-transition), border-color var(--geo-transition);
	position: relative;
	overflow: hidden;
}
.geo-stat:hover {
	transform: translateY(-3px);
	border-color: rgba(185, 150, 247, 0.4);
	box-shadow: var(--geo-shadow-milka);
}
.geo-stat__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--geo-bg-tint-strong);
	color: #8a6ed5;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}
.geo-stat__number {
	font-family: 'Dongle', cursive;
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	line-height: 1;
	letter-spacing: -0.02em;
	color: #221F1F;
	margin-bottom: 0.4rem;
}
.geo-stat__label {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--geo-text-muted);
}
.geo-stat__sub {
	font-size: 0.85rem;
	color: var(--geo-text-muted);
	margin-top: 0.5rem;
	display: block;
}

.geo-stat--accent {
	background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
	border-color: rgba(185, 150, 247, 0.20);
}
.geo-stat--accent .geo-stat__number { color: #8a6ed5; }

.geo-callout {
	background: #fff;
	border: var(--geo-border);
	border-radius: var(--geo-radius);
	padding: 2.25rem 2rem;
	position: relative;
	overflow: hidden;
}
.geo-callout::before {
	content: '';
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #B996F7 0%, rgba(185, 150, 247, 0) 100%);
}
.geo-callout__eyebrow {
	font-family: 'Pacifico', cursive;
	color: #8a6ed5;
	font-size: 1.2rem;
	margin-bottom: 0.75rem;
	display: block;
}
.geo-callout p { font-size: 1.05rem; line-height: 1.65; margin-bottom: 0.75rem; color: #221F1F; }
.geo-callout p:last-child { margin-bottom: 0; }
.geo-callout p.muted { color: var(--geo-text-muted); }

.geo-tldr {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1rem;
	margin: 1.5rem 0 1rem;
	padding: 1rem 0;
	border-top: 1px solid rgba(0,0,0,0.06);
	border-bottom: 1px solid rgba(0,0,0,0.06);
}
.geo-tldr__num {
	font-family: 'Dongle', cursive;
	font-size: 2.6rem;
	line-height: 1;
	letter-spacing: -0.02em;
	color: #8a6ed5;
}
.geo-tldr__lbl {
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--geo-text-muted);
	margin-top: 0.25rem;
}

.geo-feature {
	background: #fff;
	border: var(--geo-border);
	border-radius: var(--geo-radius);
	padding: 1.5rem 1.25rem;
	height: 100%;
	transition: transform var(--geo-transition), box-shadow var(--geo-transition);
}
.geo-feature:hover {
	transform: translateY(-2px);
	box-shadow: var(--geo-shadow);
}
.geo-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--geo-bg-tint-strong);
	color: #8a6ed5;
	font-size: 1.1rem;
	margin-bottom: 1rem;
}
.geo-feature__title { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; color: #221F1F; }
.geo-feature__body { font-size: 0.9rem; color: var(--geo-text-muted); line-height: 1.5; margin-bottom: 0; }

.geo-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.55rem 1.1rem;
	background: var(--geo-bg-tint);
	color: #8a6ed5;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.85rem;
	text-decoration: none;
	transition: all var(--geo-transition);
	border: 1px solid rgba(185, 150, 247, 0.18);
	margin: 0.25rem;
}
.geo-pill:hover {
	background: #B996F7;
	color: #fff;
	border-color: #B996F7;
	transform: translateY(-1px);
}
.geo-pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }

.geo-quote {
	background: #fff;
	border: var(--geo-border);
	border-radius: var(--geo-radius);
	padding: 2rem;
	position: relative;
	height: 100%;
	transition: transform var(--geo-transition), box-shadow var(--geo-transition);
}
.geo-quote:hover { transform: translateY(-2px); box-shadow: var(--geo-shadow); }
.geo-quote::before {
	content: '\201C';
	position: absolute;
	top: -0.5rem;
	right: 1.5rem;
	font-family: Georgia, serif;
	font-size: 6rem;
	line-height: 1;
	color: rgba(185, 150, 247, 0.18);
	pointer-events: none;
}
.geo-quote__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	padding-right: 3rem;
}
.geo-quote__platform {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #8a6ed5;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
}
.geo-quote__platform i { font-size: 1.5rem; line-height: 1; }
.geo-quote__stars { color: #B996F7; font-size: 0.85rem; }
.geo-quote__body {
	font-size: 1.02rem;
	line-height: 1.6;
	font-style: italic;
	color: #221F1F;
	margin-bottom: 1rem;
}
.geo-quote__author { font-size: 0.85rem; font-weight: 700; color: #221F1F; }
.geo-quote__date { font-size: 0.75rem; color: var(--geo-text-dim); margin-left: 0.5rem; }

.geo-rating-hero {
	background: #fff;
	border: var(--geo-border);
	border-radius: var(--geo-radius-lg);
	padding: 3rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.geo-rating-hero::before {
	content: '';
	position: absolute;
	width: 320px; height: 320px;
	background: radial-gradient(circle, rgba(185,150,247,0.15) 0%, transparent 70%);
	top: -120px; left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
}
.geo-rating-hero > * { position: relative; }
.geo-rating-hero__eyebrow {
	font-family: 'Pacifico', cursive;
	color: #8a6ed5;
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}
.geo-rating-hero__score {
	font-family: 'Dongle', cursive;
	font-size: 7rem;
	line-height: 0.9;
	letter-spacing: -0.04em;
	color: #221F1F;
}
.geo-rating-hero__score-suffix { font-size: 2.5rem; color: var(--geo-text-dim); margin-left: 0.25rem; }
.geo-rating-hero__stars { font-size: 1.5rem; color: #B996F7; margin: 0.5rem 0 1rem; }
.geo-rating-hero__count { font-size: 1.1rem; color: var(--geo-text-muted); }
.geo-rating-hero__count strong { color: #221F1F; }
.geo-rating-hero__sub { font-size: 0.85rem; color: var(--geo-text-dim); margin-top: 0.5rem; }

.geo-platform {
	background: #fff;
	border: var(--geo-border);
	border-radius: var(--geo-radius);
	padding: 1.5rem 1rem;
	text-align: center;
	text-decoration: none;
	color: inherit;
	height: 100%;
	transition: transform var(--geo-transition), box-shadow var(--geo-transition), border-color var(--geo-transition);
	display: block;
}
.geo-platform:hover {
	transform: translateY(-3px);
	border-color: rgba(185, 150, 247, 0.45);
	box-shadow: var(--geo-shadow-milka);
	color: inherit;
}
.geo-platform__icon {
	color: #8a6ed5;
	margin-bottom: 0.85rem;
	line-height: 1;
}
.geo-platform__icon i { line-height: 1; vertical-align: middle; }
.geo-platform__name { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.25rem; }
.geo-platform__rating {
	font-family: 'Dongle', cursive;
	font-size: 2.4rem;
	line-height: 1;
	color: #221F1F;
}
.geo-platform__stars { color: #B996F7; font-size: 0.8rem; margin: 0.15rem 0; }
.geo-platform__count { font-size: 0.72rem; color: var(--geo-text-dim); }

.geo-faq {
	background: #fff;
	border: var(--geo-border);
	border-radius: var(--geo-radius-sm);
	margin-bottom: 0.75rem;
	transition: border-color var(--geo-transition), box-shadow var(--geo-transition);
	overflow: hidden;
}
.geo-faq[open] {
	border-color: rgba(185, 150, 247, 0.35);
	box-shadow: var(--geo-shadow-sm);
}
.geo-faq summary {
	padding: 1.1rem 1.4rem;
	cursor: pointer;
	font-weight: 700;
	font-size: 0.98rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	list-style: none;
	color: #221F1F;
}
.geo-faq summary::-webkit-details-marker { display: none; }
.geo-faq summary::after {
	content: '+';
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--geo-bg-tint);
	color: #8a6ed5;
	font-size: 1.25rem;
	font-weight: 400;
	transition: transform var(--geo-transition), background var(--geo-transition);
}
.geo-faq[open] summary::after {
	transform: rotate(45deg);
	background: #B996F7;
	color: #fff;
}
.geo-faq__body {
	padding: 0 1.4rem 1.25rem;
	color: var(--geo-text-muted);
	line-height: 1.6;
	font-size: 0.95rem;
}

.geo-cta {
	background: linear-gradient(135deg, #fafafa 0%, #f4f0fc 100%);
	border: 1px solid rgba(185, 150, 247, 0.18);
	border-radius: var(--geo-radius-lg);
	padding: 3rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.geo-cta::before {
	content: '';
	position: absolute;
	width: 380px; height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(185, 150, 247, 0.18) 0%, transparent 70%);
	top: -180px; left: -120px;
	pointer-events: none;
}
.geo-cta::after {
	content: '';
	position: absolute;
	width: 240px; height: 240px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 250, 192, 0.45) 0%, transparent 70%);
	bottom: -120px; right: -80px;
	pointer-events: none;
}
.geo-cta > * { position: relative; z-index: 1; }
.geo-cta h2 {
	font-family: 'Dongle', cursive;
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	line-height: 1;
	margin-bottom: 0.75rem;
	color: #221F1F;
}
.geo-cta p { font-size: 1.05rem; color: var(--geo-text-muted); margin-bottom: 1.5rem; }
.geo-cta__buttons { display: inline-flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

.geo-table-wrap {
	background: #fff;
	border: var(--geo-border);
	border-radius: var(--geo-radius);
	overflow: hidden;
	box-shadow: var(--geo-shadow-sm);
}
.geo-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin: 0;
}
.geo-table thead {
	background: #221F1F;
	color: #fff;
}
.geo-table thead th {
	padding: 1rem 0.85rem;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-align: left;
	border: 0;
	white-space: nowrap;
}
.geo-table tbody td, .geo-table tbody th {
	padding: 0.95rem 0.85rem;
	font-size: 0.88rem;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	background: #fff;
	vertical-align: middle;
}
.geo-table tbody th { font-weight: 700; color: #221F1F; }
.geo-table tbody tr:hover td, .geo-table tbody tr:hover th { background: #fafafa; }
.geo-table tbody tr.geo-table__highlight th,
.geo-table tbody tr.geo-table__highlight td {
	background: rgba(185, 150, 247, 0.07);
	font-weight: 600;
}
.geo-table tbody tr.geo-table__highlight:hover th,
.geo-table tbody tr.geo-table__highlight:hover td {
	background: rgba(185, 150, 247, 0.12);
}
.geo-table-badge {
	display: inline-block;
	padding: 0.15rem 0.5rem;
	background: #B996F7;
	color: #fff;
	border-radius: 6px;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-left: 0.5rem;
}

.geo-tool {
	background: #fff;
	border: var(--geo-border);
	border-radius: var(--geo-radius);
	padding: 2rem;
	margin-bottom: 1.5rem;
	transition: box-shadow var(--geo-transition);
}
.geo-tool:hover { box-shadow: var(--geo-shadow); }
.geo-tool--featured {
	border: 2px solid rgba(185, 150, 247, 0.5);
	background: linear-gradient(180deg, #fff 0%, rgba(185, 150, 247, 0.03) 100%);
}
.geo-tool__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	padding-bottom: 1rem;
	margin-bottom: 1.25rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.geo-tool__name {
	font-family: 'Dongle', cursive;
	font-size: 2.5rem;
	line-height: 1;
	color: #221F1F;
	margin: 0;
}
.geo-tool__rating { font-size: 0.85rem; color: var(--geo-text-muted); font-weight: 600; }
.geo-tool__row { margin-bottom: 1rem; }
.geo-tool__row:last-child { margin-bottom: 0; }
.geo-tool__lbl {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #8a6ed5;
	margin-bottom: 0.35rem;
}
.geo-tool__lbl i { color: #B996F7; }
.geo-tool__txt { font-size: 0.92rem; color: var(--geo-text-muted); line-height: 1.55; margin: 0; }
.geo-tool__source { font-size: 0.72rem; color: var(--geo-text-dim); margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,0.05); }

.geo-timeline-card {
	background: #fff;
	border: var(--geo-border);
	border-radius: var(--geo-radius);
	padding: 1.5rem;
	margin-bottom: 1rem;
	transition: transform var(--geo-transition), box-shadow var(--geo-transition);
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
}
.geo-timeline-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--geo-shadow);
}
.geo-timeline-card__date {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: var(--geo-bg-tint);
	color: #8a6ed5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(185, 150, 247, 0.2);
	line-height: 1;
}
.geo-timeline-card__date small {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.geo-timeline-card__date strong {
	font-family: 'Dongle', cursive;
	font-size: 2rem;
	line-height: 1;
	margin-top: 0.15rem;
	color: #221F1F;
}
.geo-timeline-card__body { flex: 1; min-width: 0; }
.geo-timeline-card__date-text {
	font-size: 0.7rem;
	color: var(--geo-text-dim);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 0.4rem 0;
}
.geo-timeline-card__title {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}
.geo-timeline-card__title a { color: #221F1F; text-decoration: none; }
.geo-timeline-card__title a:hover { color: #8a6ed5; }
.geo-timeline-card__sub { font-size: 0.92rem; color: var(--geo-text-muted); margin-bottom: 0.75rem; line-height: 1.5; }
.geo-timeline-card__more { font-size: 0.85rem; color: #8a6ed5; font-weight: 700; text-decoration: none; }
.geo-timeline-card__more:hover { color: #B996F7; }

.geo-month-label {
	font-family: 'Dongle', cursive;
	font-size: 2.5rem;
	line-height: 1;
	color: var(--geo-text-dim);
	margin: 2.5rem 0 1rem;
	letter-spacing: -0.01em;
}
.geo-month-label:first-child { margin-top: 0; }

.geo-tabs {
	display: inline-flex;
	background: var(--geo-bg-soft);
	padding: 4px;
	border-radius: 999px;
	border: var(--geo-border);
	margin-bottom: 1.5rem;
	gap: 2px;
}
.geo-tabs button {
	background: transparent;
	border: 0;
	padding: 0.55rem 1.25rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--geo-text-muted);
	border-radius: 999px;
	cursor: pointer;
	transition: all var(--geo-transition);
}
.geo-tabs button:hover { color: #8a6ed5; }
.geo-tabs button.active,
.geo-tabs .nav-link.active,
.geo-tabs button[aria-selected="true"] {
	background: #B996F7;
	color: #fff;
}

.geo-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem 1.5rem;
}
.geo-info-grid__item {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
}
.geo-info-grid__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--geo-bg-tint-strong);
	color: #8a6ed5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}
.geo-info-grid__lbl {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--geo-text-muted);
	margin-bottom: 0.15rem;
}
.geo-info-grid__val { font-weight: 700; font-size: 0.95rem; color: #221F1F; line-height: 1.35; }
.geo-info-grid__sub { font-size: 0.78rem; color: var(--geo-text-dim); margin-top: 0.1rem; }

.geo-press-marquee {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	justify-content: center;
	align-items: center;
	padding: 0.75rem 1rem;
	color: var(--geo-text-muted);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
}
.geo-press-marquee strong { color: #221F1F; font-weight: 700; }

.geo-bar {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 0.85rem;
}
.geo-bar__lbl {
	width: 7.5rem;
	flex-shrink: 0;
	font-size: 0.82rem;
	font-weight: 700;
	color: #221F1F;
	white-space: nowrap;
}
.geo-bar__track {
	display: block;
	flex: 1;
	height: 10px;
	background: rgba(0, 0, 0, 0.06);
	border-radius: 999px;
	overflow: hidden;
}
.geo-bar__fill {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #B996F7 0%, #d0b3fb 100%);
	border-radius: 999px;
}
.geo-bar__num {
	width: 3.5rem;
	flex-shrink: 0;
	text-align: right;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--geo-text-muted);
}

.geo-anchor-nav {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	padding: 4px;
	background: #fff;
	border: var(--geo-border);
	border-radius: 999px;
	margin: 1rem 0 2rem;
	box-shadow: var(--geo-shadow-sm);
}
.geo-anchor-nav a {
	padding: 0.5rem 1rem;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--geo-text-muted);
	border-radius: 999px;
	text-decoration: none;
	transition: all var(--geo-transition);
}
.geo-anchor-nav a:hover { background: var(--geo-bg-tint); color: #8a6ed5; }

.geo-meta-line {
	font-size: 0.78rem;
	color: var(--geo-text-dim);
	letter-spacing: 0.04em;
}
.geo-meta-line i { color: #B996F7; margin-right: 0.25rem; }

.geo-quote-mark {
	font-family: Georgia, serif;
	font-size: 5rem;
	line-height: 0.6;
	color: rgba(185,150,247,0.20);
}

@media (max-width: 575.98px) {
	.geo-stat__number { font-size: 2.4rem; }
	.geo-rating-hero__score { font-size: 5rem; }
	.geo-tool { padding: 1.5rem; }
	.geo-tool__name { font-size: 2rem; }
	.geo-timeline-card { padding: 1.25rem; gap: 1rem; }
	.geo-timeline-card__date { width: 56px; height: 56px; }
}
