	/**
	 * =============================================================================
	 *  ForVera Studio
	 * =============================================================================
	 *  File:        styles.css
	 *  Purpose:     Core styles for ForVera Studio landing page
	 *  Module:      Landing Page UI
	 *  Developer:   ForVera Studio
	 *  Owner:       ForVera Media LLC
	 *  Version:     1.0.1
	 *  Updated:     2026-03-13
	 * =============================================================================
	 */

	/* =========================================================
	BEACONS SPLASH PAGE
	---------------------------------------------------------
	Layer order:
	0  nebula
	1  starfield
	2  hero stars + twinkle stars
	3  shooting star
	4  page content
	========================================================= */

	:root {
	--bg-1: #01030a;
	--bg-2: #030814;
	--bg-3: #07122a;
	--bg-4: #0a1436;

	--text-main: #eef4ff;
	--text-soft: rgba(238, 244, 255, 0.82);

	--link: #cfe6ff;
	--link-hover: #ffffff;

	--glow-cyan: rgba(53, 221, 255, 0.35);
	--glow-violet: rgba(145, 95, 255, 0.26);
	}

	* {
	box-sizing: border-box;
	}

	html,
	body {
	min-height: 100%;
	margin: 0;
	}

	body {
	position: relative;
	overflow: hidden;
	font-family:
	Inter,
	system-ui,
	-apple-system,
	BlinkMacSystemFont,
	"Segoe UI",
	Roboto,
	Helvetica,
	Arial,
	sans-serif;
	color: var(--text-main);
	background:
	radial-gradient(circle at 20% 20%, rgba(40, 80, 255, 0.16), transparent 20%),
	radial-gradient(circle at 80% 18%, rgba(123, 65, 255, 0.14), transparent 22%),
	radial-gradient(circle at 50% 78%, rgba(0, 132, 255, 0.10), transparent 26%),
	linear-gradient(
	  180deg,
	  var(--bg-1) 0%,
	  var(--bg-2) 30%,
	  var(--bg-3) 68%,
	  var(--bg-4) 100%
	);
	}

	.nebula,
	.stars,
	.stars-small,
	.stars-tiny,
	.hero-stars,
	.shooting-star,
	.twinkle-star {
	pointer-events: none;
	}

	.nebula,
	.stars,
	.stars-small,
	.stars-tiny,
	.hero-stars {
	position: absolute;
	inset: 0;
	}

	/* =========================================================
	NEBULA
	========================================================= */

	.nebula {
	z-index: 0;
	background:
	radial-gradient(circle at 50% 60%, rgba(60, 125, 255, 0.12), transparent 26%),
	radial-gradient(circle at 30% 25%, rgba(50, 90, 220, 0.08), transparent 18%),
	radial-gradient(circle at 75% 22%, rgba(130, 80, 255, 0.08), transparent 18%);
	filter: blur(8px);
	}

	/* =========================================================
	STARFIELD
	========================================================= */

	.stars,
	.stars-small,
	.stars-tiny {
	z-index: 1;
	background-repeat: repeat;
	will-change: transform, opacity;
	}

	.stars {
	opacity: 0.95;
	background-image:
	radial-gradient(2.4px 2.4px at 7% 12%, rgba(255,255,255,0.98), transparent 60%),
	radial-gradient(2px 2px at 14% 28%, rgba(255,255,255,0.88), transparent 60%),
	radial-gradient(2.6px 2.6px at 22% 70%, rgba(255,255,255,0.95), transparent 60%),
	radial-gradient(2px 2px at 31% 18%, rgba(255,255,255,0.92), transparent 60%),
	radial-gradient(2.4px 2.4px at 40% 56%, rgba(255,255,255,0.98), transparent 60%),
	radial-gradient(2px 2px at 52% 22%, rgba(255,255,255,0.88), transparent 60%),
	radial-gradient(2.6px 2.6px at 61% 76%, rgba(255,255,255,0.95), transparent 60%),
	radial-gradient(2px 2px at 73% 30%, rgba(255,255,255,0.90), transparent 60%),
	radial-gradient(2.4px 2.4px at 82% 14%, rgba(255,255,255,0.98), transparent 60%),
	radial-gradient(2px 2px at 90% 64%, rgba(255,255,255,0.86), transparent 60%);
	animation:
	driftSlow 120s linear infinite,
	twinkleStrong 9s ease-in-out infinite alternate;
	}

	.stars-small {
	opacity: 0.8;
	background-image:
	radial-gradient(1.5px 1.5px at 5% 42%, rgba(255,255,255,0.82), transparent 60%),
	radial-gradient(1.4px 1.4px at 10% 74%, rgba(255,255,255,0.76), transparent 60%),
	radial-gradient(1.3px 1.3px at 17% 9%, rgba(255,255,255,0.72), transparent 60%),
	radial-gradient(1.4px 1.4px at 24% 46%, rgba(255,255,255,0.84), transparent 60%),
	radial-gradient(1.3px 1.3px at 28% 84%, rgba(255,255,255,0.70), transparent 60%),
	radial-gradient(1.4px 1.4px at 35% 36%, rgba(255,255,255,0.78), transparent 60%),
	radial-gradient(1.5px 1.5px at 43% 12%, rgba(255,255,255,0.82), transparent 60%);
	animation:
	driftMedium 180s linear infinite,
	twinkleSoft 10s ease-in-out infinite alternate;
	}

	.stars-tiny {
	opacity: 0.62;
	background-image:
	radial-gradient(1px 1px at 4% 18%, rgba(255,255,255,0.62), transparent 60%),
	radial-gradient(1px 1px at 9% 58%, rgba(255,255,255,0.55), transparent 60%),
	radial-gradient(1px 1px at 15% 88%, rgba(255,255,255,0.48), transparent 60%),
	radial-gradient(1px 1px at 21% 34%, rgba(255,255,255,0.58), transparent 60%);
	transform-origin: center center;
	animation:
	driftFast 240s linear infinite,
	deepSpaceBreath 38s ease-in-out infinite;
	}

	/* =========================================================
	HERO STARS
	========================================================= */

	.hero-stars {
	z-index: 2;
	}

	.hero-star {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow:
	0 0 6px rgba(255,255,255,0.9),
	0 0 14px rgba(140,190,255,0.6),
	0 0 28px rgba(90,140,255,0.4);
	animation: heroTwinkle 4s ease-in-out infinite alternate;
	}

	.hero-star-1 {
	top: 38%;
	left: 32%;
	}

	.hero-star-2 {
	top: 28%;
	left: 50%;
	animation-delay: 1.5s;
	}

	.hero-star-3 {
	top: 40%;
	left: 68%;
	animation-delay: 2.8s;
	}

	/* =========================================================
	SHOOTING STAR / COMET
	========================================================= */

	.shooting-star {
	position: absolute;
	top: 14%;
	left: -18%;
	width: 170px;
	height: 2px;
	z-index: 3;
	background: linear-gradient(
	90deg,
	rgba(255,255,255,0),
	rgba(255,255,255,0.2),
	rgba(180,225,255,0.98)
	);
	border-radius: 999px;
	transform: rotate(-18deg);
	box-shadow:
	0 0 10px rgba(173,225,255,0.55),
	0 0 20px rgba(118,170,255,0.35);
	opacity: 0;
	animation: shootingStar 13s linear infinite;
	}

	.shooting-star::after {
	content: "";
	position: absolute;
	right: -2px;
	top: 50%;
	width: 6px;
	height: 6px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: rgba(255,255,255,0.98);
	box-shadow:
	0 0 8px rgba(255,255,255,0.85),
	0 0 16px rgba(123,198,255,0.65);
	}

	/* =========================================================
	PAGE LAYOUT
	========================================================= */

	.page {
	position: relative;
	z-index: 4;
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 32px 20px;
	}

	.hero {
	width: 100%;
	max-width: 960px;
	text-align: center;
	}

	.logo-wrap {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 20px 20px 12px;
	}

	/* =========================================================
	LOGO
	---------------------------------------------------------
	Base state matches the end state of the animation so
	there is no visible jump when the animation completes.
	========================================================= */

	.logo {
	display: block;
	width: min(92vw, 720px);
	max-width: 720px;
	height: auto;

	transform: translateY(0) scale(1);

	filter:
	drop-shadow(0 0 12px rgba(53,221,255,0.28))
	drop-shadow(0 0 28px rgba(145,95,255,0.20));

	animation: logoAwaken 4.2s ease-in-out 2;
	}

	@keyframes logoAwaken {
	0% {
	transform: translateY(0) scale(1);
	opacity: 1;
	filter:
	  drop-shadow(0 0 12px rgba(53,221,255,0.28))
	  drop-shadow(0 0 28px rgba(145,95,255,0.20));
	}

	35% {
	transform: translateY(-1px) scale(1.004);
	opacity: 1;
	filter:
	  drop-shadow(0 0 16px rgba(53,221,255,0.36))
	  drop-shadow(0 0 34px rgba(145,95,255,0.24));
	}

	35% {
	transform: translateY(-1px) scale(1.004);
	filter:
	brightness(1.03)
	drop-shadow(0 0 16px rgba(53,221,255,0.36))
	drop-shadow(0 0 34px rgba(145,95,255,0.24));
	}
	}

	/* =========================================================
	PROPERTY LINK
	========================================================= */

	.property-link {
	display: inline-block;
	color: var(--text-soft);
	font-size: 0.79rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-decoration: none;
	transition:
	color 180ms ease,
	text-shadow 180ms ease,
	transform 180ms ease;
	}

	.property-link:hover,
	.property-link:focus-visible {
	color: var(--link-hover);
	text-shadow: 0 0 18px rgba(150,210,255,0.35);
	transform: translateY(-1px);
	outline: none;
	}

	.property-link span {
	color: var(--link);
	}

	.info-detail {
	margin: 1.1rem 0 0;
	padding: 0 0.5rem;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--text-soft);
	letter-spacing: 0.02em;
	text-align: center;
	max-width: 28rem;
	line-height: 1.45;
	}

	/* =========================================================
	RANDOM TWINKLE STAR (JS GENERATED)
	========================================================= */

	.twinkle-star {
	position: absolute;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #ffffff;
	pointer-events: none;
	opacity: 0;
	z-index: 2;
	box-shadow:
	0 0 6px rgba(255,255,255,0.9),
	0 0 16px rgba(140,190,255,0.6),
	0 0 30px rgba(90,140,255,0.35);
	animation: twinklePulse 1.2s ease-out forwards;
	}

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

	@keyframes twinkleStrong {
	0% { opacity: 0.78; }
	50% { opacity: 1; }
	100% { opacity: 0.82; }
	}

	@keyframes twinkleSoft {
	0% { opacity: 0.52; }
	50% { opacity: 0.86; }
	100% { opacity: 0.58; }
	}

	@keyframes heroTwinkle {
	0% { opacity: 0.7; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.35); }
	100% { opacity: 0.8; transform: scale(1.05); }
	}

	@keyframes twinklePulse {
	0%   { opacity: 0; transform: scale(0.5); }
	30%  { opacity: 1; transform: scale(1.4); }
	100% { opacity: 0; transform: scale(0.6); }
	}

	@keyframes driftSlow {
	from { transform: translate3d(0,0,0); }
	to   { transform: translate3d(-20px,12px,0); }
	}

	@keyframes driftMedium {
	from { transform: translate3d(0,0,0); }
	to   { transform: translate3d(18px,-10px,0); }
	}

	@keyframes driftFast {
	from { transform: translate3d(0,0,0); }
	to   { transform: translate3d(-14px,8px,0); }
	}

	@keyframes shootingStar {
	0% {
	transform: translate3d(0,0,0) rotate(-18deg);
	opacity: 0;
	}
	7% {
	opacity: 0.95;
	}
	18% {
	  transform: translate3d(118vw, 38vh, 0) rotate(-18deg);
	  opacity: 0;
	}

	100% {
	  transform: translate3d(118vw, 38vh, 0) rotate(-18deg);
	  opacity: 0;
	}
	}
	@keyframes shootingStar {
	0% {
	transform: translate3d(0, 0, 0) rotate(-18deg);
	opacity: 0;
	}

	7% {
	opacity: 0.95;
	}

	18% {
	transform: translate3d(118vw, 42vh, 0) rotate(-18deg);
	opacity: 0;
	}

	100% {
	transform: translate3d(118vw, 42vh, 0) rotate(-18deg);
	opacity: 0;
	}
	}

	@keyframes deepSpaceBreath {
	0% {
	transform: scale(1) translate3d(0,0,0);
	}
	50% {
	transform: scale(1.015) translate3d(-2px,1px,0);
	}
	100% {
	transform: scale(1) translate3d(0,0,0);
	}
	}

	@keyframes logoAwaken {
	0% {
	transform: translateY(0) scale(1);
	filter:
	  drop-shadow(0 0 10px rgba(53,221,255,0.20))
	  drop-shadow(0 0 22px rgba(145,95,255,0.16));
	}
	40% {
	transform: translateY(-1px) scale(1.004);
	filter:
	  drop-shadow(0 0 16px rgba(53,221,255,0.34))
	  drop-shadow(0 0 34px rgba(145,95,255,0.24));
	}
	100% {
	transform: translateY(0) scale(1);
	filter:
	  drop-shadow(0 0 12px rgba(53,221,255,0.28))
	  drop-shadow(0 0 28px rgba(145,95,255,0.20));
	}
	}

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

	@media (max-width: 640px) {
	.logo-wrap {
	gap: 14px;
	padding-top: 10px;
	}

	.property-link {
	font-size: 0.92rem;
	line-height: 1.45;
	}

	.shooting-star {
	width: 120px;
	}
	}

	/* =========================================================
	REDUCED MOTION
	========================================================= */

	@media (prefers-reduced-motion: reduce) {
	.stars,
	.stars-small,
	.stars-tiny,
	.shooting-star,
	.hero-star,
	.logo,
	.twinkle-star {
	animation: none !important;
	}
	}