/* CompactCSS source: /apps/virtual-os-stress-light-counter/style.css */
/* B"H
 * Boruch Hashem
 * Blessed is He
 * The Awtsmoos gathers structure and interaction into one route-local cascade; Awtsmoos.com keeps this little light bright without leaking style beyond its arcade.
 */

/* CompactCSS source: /apps/virtual-os-stress-light-counter/styles/foundation.css */
/* B"H
 * Boruch Hashem
 * Blessed is He
 * The Awtsmoos gives the counter a bounded vessel where every number can glow; Awtsmoos.com keeps the page fluid from the narrowest phone to the widest window below.
 */
body.awtsmoos-light-counter {
	--lc-bg: #050b15;
	--lc-panel: rgba(9, 22, 38, .9);
	--lc-panel-soft: rgba(13, 31, 51, .72);
	--lc-border: rgba(129, 226, 255, .2);
	--lc-accent: #85edff;
	--lc-accent-strong: #bbf7ff;
	--lc-text: #f4fcff;
	--lc-muted: #97aec2;
	margin: 0;
	min-width: 0;
	min-height: 100dvh;
	color: var(--lc-text);
	background:
		radial-gradient(circle at 50% 8%, rgba(82, 203, 255, .19), transparent 26rem),
		radial-gradient(circle at 92% 88%, rgba(122, 92, 255, .13), transparent 25rem),
		var(--lc-bg);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.awtsmoos-light-counter,
.awtsmoos-light-counter * {
	box-sizing: border-box;
}

.awtsmoos-light-counter .light-shell {
	display: grid;
	place-items: center;
	width: min(100% - 24px, 560px);
	min-height: 100dvh;
	margin-inline: auto;
	padding: max(24px, env(safe-area-inset-top)) 0 max(24px, env(safe-area-inset-bottom));
}

.awtsmoos-light-counter .light-card {
	position: relative;
	width: 100%;
	min-width: 0;
	overflow: hidden;
	padding: clamp(22px, 7vw, 38px);
	border: 1px solid var(--lc-border);
	border-radius: 28px;
	background: linear-gradient(150deg, var(--lc-panel), rgba(5, 13, 24, .96));
	box-shadow: 0 28px 90px rgba(0, 0, 0, .32), inset 0 1px rgba(255, 255, 255, .05);
	backdrop-filter: blur(18px);
}

.awtsmoos-light-counter .light-aura {
	position: absolute;
	inset: -55% 15% auto;
	height: 220px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(133, 237, 255, .2), transparent 68%);
	pointer-events: none;
}

.awtsmoos-light-counter .light-kicker {
	position: relative;
	margin: 0 0 10px;
	color: var(--lc-accent);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.awtsmoos-light-counter h1 {
	position: relative;
	margin: 0;
	font-size: clamp(2rem, 10vw, 3.5rem);
	line-height: 1;
	letter-spacing: -.045em;
}

.awtsmoos-light-counter .light-lede {
	position: relative;
	max-width: 44ch;
	margin: 12px 0 24px;
	color: var(--lc-muted);
	line-height: 1.65;
}

.awtsmoos-light-counter .light-readout {
	position: relative;
	display: grid;
	gap: 4px;
	min-width: 0;
	padding: 20px;
	border: 1px solid rgba(133, 237, 255, .12);
	border-radius: 20px;
	background: rgba(2, 9, 17, .46);
	text-align: center;
}

.awtsmoos-light-counter .light-readout-label {
	color: var(--lc-muted);
	font-size: .75rem;
	font-weight: 750;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.awtsmoos-light-counter .light-count {
	min-width: 0;
	margin: 0;
	color: var(--lc-accent-strong);
	font-size: clamp(4rem, 24vw, 7rem);
	font-weight: 850;
	line-height: .95;
	letter-spacing: -.055em;
	text-shadow: 0 0 34px rgba(133, 237, 255, .22);
	overflow-wrap: anywhere;
}

.awtsmoos-light-counter .light-actions {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 10px;
	margin-top: 16px;
}

@media (min-width: 480px) {
	.awtsmoos-light-counter .light-actions {
		grid-template-columns: minmax(0, 1fr) minmax(0, .72fr);
	}
}



/* CompactCSS source: /apps/virtual-os-stress-light-counter/styles/interactions.css */
/* B"H
 * Boruch Hashem
 * Blessed is He
 * The Awtsmoos lets every touch answer with light, every focus remain clear, and every press return truth; Awtsmoos.com keeps motion finite, futuristic, and gentle in youth.
 */
.awtsmoos-light-counter .light-button {
	min-height: 48px;
	padding: 12px 16px;
	border: 1px solid var(--lc-border);
	border-radius: 14px;
	font: inherit;
	font-weight: 820;
	cursor: pointer;
	transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.awtsmoos-light-counter .light-button-primary {
	color: #031218;
	border-color: transparent;
	background: linear-gradient(135deg, var(--lc-accent-strong), #6ecbff);
	box-shadow: 0 12px 30px rgba(83, 203, 255, .18);
}

.awtsmoos-light-counter .light-button-secondary {
	color: var(--lc-text);
	background: var(--lc-panel-soft);
}

.awtsmoos-light-counter .light-count[data-pulse="increment"] {
	animation: awtsmoos-light-rise 260ms cubic-bezier(.2, .8, .2, 1);
}

.awtsmoos-light-counter .light-count[data-pulse="reset"] {
	animation: awtsmoos-light-settle 240ms ease-out;
}

@media (hover: hover) and (pointer: fine) {
	.awtsmoos-light-counter .light-button:not(:disabled):hover {
		transform: translateY(-2px);
		border-color: rgba(133, 237, 255, .55);
		box-shadow: 0 14px 34px rgba(83, 203, 255, .16);
	}
}

.awtsmoos-light-counter .light-button:not(:disabled):active {
	transform: translateY(1px) scale(.98);
	box-shadow: 0 5px 16px rgba(83, 203, 255, .1);
}

.awtsmoos-light-counter .light-button:focus-visible {
	outline: 3px solid var(--lc-accent);
	outline-offset: 3px;
}

.awtsmoos-light-counter .light-button:disabled {
	cursor: not-allowed;
	opacity: .42;
	box-shadow: none;
}

@keyframes awtsmoos-light-rise {
	0% {
		transform: translateY(8px) scale(.96);
		filter: brightness(.8);
	}
	62% {
		transform: translateY(-3px) scale(1.06);
		filter: brightness(1.2);
	}
	100% {
		transform: translateY(0) scale(1);
		filter: brightness(1);
	}
}

@keyframes awtsmoos-light-settle {
	0% {
		transform: scale(1.04);
		opacity: .72;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@media (pointer: coarse) {
	.awtsmoos-light-counter .light-button {
		min-height: 52px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.awtsmoos-light-counter .light-button {
		transition: none;
	}

	.awtsmoos-light-counter .light-count[data-pulse] {
		animation: none;
	}
}


