/* /features/controlcenter — route-local presentation for the product tour. */

/* ---------------------------------------------------------------------------
   TEMPORARY — placeholder plate for the stale screenshots. Bead: cortex-x1fbj7g.
   Delete this whole block together with the $useScreenshotPlaceholders branch in
   pages/controlcenter.tpl. Nothing here touches the permanent .screenshot-frame
   primitive in css/style.css.

   It is deliberately NOT a new design: this is the site's existing no-image
   treatment — the brand gradient + "Gigahost" wordmark that .blog-card__media--
   placeholder already shows on the blog — reshaped to the screenshot's 420x247
   box. Reusing a treatment visitors meet elsewhere on the site is what stops it
   reading as a broken or still-loading image, and it makes no claim about what
   the Control Center looks like.
   ------------------------------------------------------------------------- */
.screenshot-placeholder {
	align-items: center;
	aspect-ratio: 420 / 247;
	/* Token-only: .blog-card__media--placeholder's mid stop is a literal hex, and
	   the only token carrying that mid blue is --map-in-cart, which is the ccTLD
	   map's status vocabulary and would be wrong here. Two stops, no new hex. */
	background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 150%);
	border-radius: var(--radius-md);
	color: rgba(255, 255, 255, 0.92);
	display: flex;
	font-family: var(--font-sans);
	font-size: 1.25rem;
	font-weight: 600;
	justify-content: center;
	letter-spacing: 0.04em;
	width: 420px;
	max-width: 100%;
}


.controlcenter-hero-copy {
	color: #d7e6ef;
	font-size: 1.05em;
	line-height: 1.7;
	margin-top: var(--space-4);
}

.controlcenter-feature-row + .controlcenter-feature-row {
	margin-top: var(--space-8);
}

.controlcenter-setup {
	background: var(--accent-muted);
	border: 1px solid rgba(4, 45, 74, 0.12);
	border-radius: var(--radius-lg);
	margin: var(--space-10) 0 var(--space-8);
	padding: var(--space-6);
}

.controlcenter-setup h2 {
	color: var(--accent-dark);
	margin-top: 0;
	text-align: center;
}

.controlcenter-setup__steps {
	counter-reset: controlcenter-step;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-3) var(--space-6);
	list-style: none;
	margin: var(--space-6) 0 var(--space-8);
	padding: 0;
}

.controlcenter-setup__steps li {
	counter-increment: controlcenter-step;
	line-height: 1.55;
	min-height: 32px;
	padding-left: 44px;
	position: relative;
}

.controlcenter-setup__steps li::before {
	align-items: center;
	background: var(--accent-dark);
	border-radius: var(--radius-circle);
	color: var(--accent-fg);
	content: counter(controlcenter-step);
	display: flex;
	font-size: 0.85em;
	font-weight: 600;
	height: 32px;
	justify-content: center;
	left: 0;
	position: absolute;
	top: -4px;
	width: 32px;
}

.controlcenter-setup .btn-order {
	margin-bottom: 0;
}

@media screen and (max-width: 767px) {
	.controlcenter-feature-row + .controlcenter-feature-row {
		margin-top: var(--space-10);
	}

	/* Stacked on phones: separate the screenshot from the copy above it. The
	   fluid/rounded treatment itself is the shared .screenshot-frame primitive
	   in css/style.css (cortex-a4zyn40); only the spacing is route-local. */
	.controlcenter-feature-row .screenshot-frame {
		margin-top: var(--space-4);
	}

	.controlcenter-setup {
		margin-top: var(--space-8);
		padding: var(--space-5) var(--space-4);
	}

	.controlcenter-setup__steps {
		grid-template-columns: 1fr;
	}
}
