.enigma-service-index__container {
	display: grid;
	gap: clamp(28px, 3.6vw, 48px);
	align-items: start;
}

.enigma-service-index__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
	gap: 10px;
}

.enigma-service-index__chip {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	padding: 15px 16px;
	background: var(--e-chip);
	border: 1px solid var(--e-l2);
	border-radius: 14px;
	text-decoration: none;
	transition: border-color 220ms ease, background 220ms ease;
}

.enigma-service-index__chip:hover {
	border-color: rgba(38, 169, 224, .5);
	background: rgba(38, 169, 224, .07);
}

.enigma-service-index__icon {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(38, 169, 224, .13);
	border: 1px solid rgba(38, 169, 224, .28);
	color: #26A9E0;
}

.enigma-service-index__icon svg {
	display: block;
}

.enigma-service-index__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.enigma-service-index__num {
	font-size: 9.5px;
	font-weight: 800;
	letter-spacing: .2em;
	color: var(--e-m4);
	font-variant-numeric: tabular-nums;
}

.enigma-service-index__name {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: -.005em;
	line-height: 1.3;
	color: var(--e-text);
	text-wrap: pretty;
}

/* Surface variants */
.enigma-section--inverted .enigma-service-index__chip {
	background: rgba(64, 64, 65, .05);
	border-color: rgba(64, 64, 65, .15);
}

.enigma-section--inverted .enigma-service-index__name {
	color: var(--e-text);
}

@media (prefers-reduced-motion: reduce) {
	.enigma-service-index__chip {
		transition: none;
	}
}

/* ============================================ split layout — heading beside chips

   Used by the Network page's "same scope" section: the heading, body and a button
   sit in the left column, the chip grid in the right. */

.enigma-service-index.is-split .enigma-service-index__container {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
	gap: clamp(28px, 4vw, 60px);
	align-items: start;
}

.enigma-service-index.is-split .enigma-service-index__grid {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
	gap: 9px;
}

.enigma-service-index__cta {
	margin-top: 28px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 48px;
	padding: 0 24px;
	border: 1px solid var(--e-l3);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--e-text);
	text-decoration: none;
	transition: border-color 220ms ease, color 220ms ease;
}

.enigma-service-index__cta:hover {
	border-color: var(--e-accent);
	color: var(--e-accent);
}

@media (prefers-reduced-motion: reduce) {
	.enigma-service-index__cta {
		transition: none;
	}
}
