/* ═══════════════════════════════════════════════════════════════
   AWARD-WINNING DESIGN SYSTEM
   A gorgeous, meaningful, artistic experience
   ═══════════════════════════════════════════════════════════════ */

/* === CUSTOM PROPERTIES === */
:root {
	/* Void spectrum - ultra deep blacks with warmth */
	--void-abyss: #010104;
	--void-deep: #06060d;
	--void-surface: #0c0c14;

	/* Ethereal palette - mystical and warm */
	--ether-violet: #9333ea;
	--ether-purple: #7c3aed;
	--ether-indigo: #6366f1;
	--ether-blue: #3b82f6;
	--ether-cyan: #22d3ee;
	--ether-rose: #fb7185;
	--ether-amber: #fbbf24;
	--ether-white: #fafafa;

	/* Text hierarchy */
	--text-luminous: #ffffff;
	--text-primary: #e2e8f0;
	--text-secondary: #94a3b8;
	--text-tertiary: #64748b;
	--text-whisper: #475569;

	/* Glass effects */
	--glass-white: rgba(255, 255, 255, 0.03);
	--glass-border: rgba(255, 255, 255, 0.05);
	--glass-glow: rgba(255, 255, 255, 0.08);

	/* Typography */
	--font-display: 'Cinzel', serif;
	--font-body: 'Cormorant Garamond', Georgia, serif;
	--font-ui: 'Outfit', system-ui, sans-serif;

	/* Timing */
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* === BASE RESET === */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-ui);
	background: var(--void-abyss);
	color: var(--text-primary);
	min-height: 100vh;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	cursor: none;
}

a {
	color: inherit;
	text-decoration: none;
	cursor: none;
}

/* === CUSTOM CURSOR === */
.cursor-spotlight {
	position: fixed;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle,
			rgba(147, 51, 234, 0.12) 0%,
			rgba(99, 102, 241, 0.06) 25%,
			rgba(34, 211, 238, 0.03) 50%,
			transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	mix-blend-mode: screen;
	transition: opacity 0.5s ease;
}

/* === CINEMATIC ENTRANCE === */
.cinematic-overlay {
	position: fixed;
	inset: 0;
	background: var(--void-abyss);
	z-index: 10000;
	pointer-events: none;
	opacity: 1;
	transition: opacity 1.2s var(--ease-out-expo);
}

.cinematic-overlay.fade-out {
	opacity: 0;
}

/* === MAIN WRAPPER === */
.wrapper {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6rem 2rem;
	opacity: 0;
	transform: scale(0.96);
	transition:
		opacity 1.5s var(--ease-out-expo),
		transform 1.5s var(--ease-out-expo);
}

.wrapper.loaded {
	opacity: 1;
	transform: scale(1);
}

/* === COSMIC BACKGROUND === */
.cosmos {
	position: fixed;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.void-gradient {
	position: absolute;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(ellipse 80% 50% at 20% 20%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
		radial-gradient(ellipse 60% 40% at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
		radial-gradient(ellipse 50% 50% at 50% 100%, rgba(34, 211, 238, 0.08) 0%, transparent 50%),
		linear-gradient(180deg, var(--void-abyss) 0%, var(--void-deep) 50%, var(--void-abyss) 100%);
}

/* Floating particles */
.particle {
	position: absolute;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: particle-float var(--float-duration, 15s) ease-in-out infinite;
	animation-delay: var(--float-delay, 0s);
}

@keyframes particle-float {

	0%,
	100% {
		transform: translateY(0) translateX(0) scale(1);
		opacity: var(--opacity, 0.4);
	}

	25% {
		transform: translateY(-30px) translateX(15px) scale(1.1);
	}

	50% {
		transform: translateY(-15px) translateX(-10px) scale(0.9);
		opacity: calc(var(--opacity, 0.4) * 1.5);
	}

	75% {
		transform: translateY(-40px) translateX(20px) scale(1.05);
	}
}

/* Ethereal nebulae */
.nebula {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	transition: transform 0.8s var(--ease-out-expo);
	will-change: transform;
}

.nebula-1 {
	width: 900px;
	height: 900px;
	background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, transparent 60%);
	top: -30%;
	left: -20%;
	animation: nebula-drift-1 30s ease-in-out infinite;
}

.nebula-2 {
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, transparent 60%);
	bottom: -20%;
	right: -15%;
	animation: nebula-drift-2 35s ease-in-out infinite;
}

.nebula-3 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 60%);
	top: 50%;
	left: 60%;
	animation: nebula-pulse 12s ease-in-out infinite;
}

@keyframes nebula-drift-1 {

	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}

	33% {
		transform: translate(-50px, 30px) rotate(5deg);
	}

	66% {
		transform: translate(30px, -40px) rotate(-3deg);
	}
}

@keyframes nebula-drift-2 {

	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}

	33% {
		transform: translate(40px, -30px) rotate(-5deg);
	}

	66% {
		transform: translate(-30px, 40px) rotate(3deg);
	}
}

@keyframes nebula-pulse {

	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.6;
	}

	50% {
		transform: translate(-50%, -50%) scale(1.3);
		opacity: 0.8;
	}
}

/* Sacred geometry */
.sacred-geometry {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.geometry-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	border: 1px solid;
	border-color: rgba(147, 51, 234, 0.1);
}

.ring-1 {
	width: 400px;
	height: 400px;
	transform: translate(-50%, -50%);
	animation: ring-rotate 80s linear infinite;
}

.ring-2 {
	width: 600px;
	height: 600px;
	transform: translate(-50%, -50%);
	animation: ring-rotate 120s linear infinite reverse;
	border-color: rgba(99, 102, 241, 0.08);
}

.ring-3 {
	width: 800px;
	height: 800px;
	transform: translate(-50%, -50%);
	animation: ring-rotate 160s linear infinite;
	border-color: rgba(34, 211, 238, 0.05);
}

@keyframes ring-rotate {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* Texture overlay */
.texture-overlay {
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
	z-index: 1;
	pointer-events: none;
}

.vignette {
	position: fixed;
	inset: 0;
	background: radial-gradient(ellipse 70% 70% at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 1;
	pointer-events: none;
}

/* === MAIN CONTAINER === */
.container {
	position: relative;
	z-index: 10;
	max-width: 800px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4rem;
	opacity: 0;
	transition: opacity 0.8s ease 0.3s;
}

.container.visible {
	opacity: 1;
}

/* === PROFILE SECTION === */
.profile-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.profile-frame {
	position: relative;
	width: 200px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.6s var(--ease-out-expo);
}

.profile-aura {
	position: absolute;
	width: 350%;
	height: 350%;
	background: conic-gradient(from 0deg,
			transparent 0%,
			rgba(147, 51, 234, 0.4) 10%,
			transparent 20%,
			rgba(99, 102, 241, 0.35) 30%,
			transparent 40%,
			rgba(34, 211, 238, 0.3) 50%,
			transparent 60%,
			rgba(251, 113, 133, 0.25) 70%,
			transparent 80%,
			rgba(251, 191, 36, 0.2) 90%,
			transparent 100%);
	border-radius: 50%;
	filter: blur(60px);
	animation: aura-spin 25s linear infinite;
	opacity: 0.8;
}

@keyframes aura-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.profile-ring-outer {
	position: absolute;
	width: 160%;
	height: 160%;
	border-radius: 24px;
	background: linear-gradient(135deg,
			rgba(147, 51, 234, 0.2) 0%,
			transparent 50%,
			rgba(34, 211, 238, 0.15) 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	padding: 1px;
	animation: ring-breathe 6s ease-in-out infinite;
}

.profile-ring-inner {
	position: absolute;
	width: 130%;
	height: 130%;
	border: 1px solid rgba(147, 51, 234, 0.15);
	border-radius: 20px;
	animation: ring-breathe 6s ease-in-out infinite 0.5s;
}

@keyframes ring-breathe {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.6;
	}

	50% {
		transform: scale(1.02);
		opacity: 0.3;
	}
}

.profile-image {
	width: 180px;
	height: 180px;
	border-radius: 20px;
	object-fit: cover;
	position: relative;
	z-index: 1;
	border: 2px solid rgba(255, 255, 255, 0.1);
	box-shadow:
		0 0 0 1px rgba(147, 51, 234, 0.2),
		0 0 60px rgba(147, 51, 234, 0.3),
		0 0 100px rgba(99, 102, 241, 0.2),
		0 30px 60px -15px rgba(0, 0, 0, 0.5);
	transition: all 0.6s var(--ease-out-expo);
}

.profile-frame:hover .profile-image {
	transform: scale(1.05) translateY(-5px);
	border-color: rgba(147, 51, 234, 0.4);
	box-shadow:
		0 0 0 1px rgba(147, 51, 234, 0.4),
		0 0 80px rgba(147, 51, 234, 0.4),
		0 0 150px rgba(99, 102, 241, 0.3),
		0 40px 80px -20px rgba(0, 0, 0, 0.6);
}

.profile-name {
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.6em;
	text-transform: uppercase;
	color: var(--text-secondary);
	text-shadow: 0 0 30px rgba(147, 51, 234, 0.3);
	position: relative;
}

.profile-name::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--ether-violet), transparent);
}

/* === PHILOSOPHY SECTION === */
.philosophy {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	max-width: 700px;
}

.main-quote {
	position: relative;
	margin: 0;
	padding: 0;
}

.quote-accent {
	position: absolute;
	top: -4rem;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--font-body);
	font-size: 8rem;
	background: linear-gradient(180deg, rgba(147, 51, 234, 0.5) 0%, transparent 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	user-select: none;
}

.typewriter-text {
	font-family: var(--font-display);
	font-size: 3.2rem;
	font-weight: 600;
	line-height: 1.15;
	margin: 0;
	letter-spacing: 0.01em;
	min-height: 1.2em;
	background: linear-gradient(135deg,
			var(--text-luminous) 0%,
			var(--ether-violet) 25%,
			var(--ether-indigo) 50%,
			var(--ether-cyan) 75%,
			var(--text-luminous) 100%);
	background-size: 300% 300%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: text-shimmer 10s ease infinite;
	text-shadow: none;
}

@keyframes text-shimmer {

	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

.cursor {
	display: inline-block;
	color: var(--ether-violet);
	-webkit-text-fill-color: var(--ether-violet);
	animation: cursor-blink 0.8s step-end infinite;
	margin-left: 2px;
}

.cursor.hidden {
	opacity: 0;
}

@keyframes cursor-blink {

	0%,
	50% {
		opacity: 1;
	}

	51%,
	100% {
		opacity: 0;
	}
}

/* Philosophy body */
.philosophy-body {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 1s var(--ease-out-expo),
		transform 1s var(--ease-out-expo);
}

.philosophy-body.visible {
	opacity: 1;
	transform: translateY(0);
}

.verse {
	font-family: var(--font-body);
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.7;
	color: var(--text-secondary);
	letter-spacing: 0.02em;
}

.verse .subtle {
	color: var(--text-tertiary);
	font-style: italic;
}

.verse .highlight {
	color: var(--text-luminous);
	font-weight: 500;
	position: relative;
	display: inline;
	background: linear-gradient(180deg, transparent 60%, rgba(147, 51, 234, 0.2) 60%);
}

.verse .emphasis {
	display: block;
	margin-top: 0.5rem;
	font-style: italic;
	color: var(--ether-rose);
	font-weight: 500;
}

.quote-attribution {
	font-family: var(--font-ui);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--text-tertiary);
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.6s var(--ease-out-expo);
}

.quote-attribution.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger animations */
.stagger {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.8s var(--ease-out-expo),
		transform 0.8s var(--ease-out-expo);
	transition-delay: calc(var(--stagger, 0) * 0.1s);
}

.stagger.visible {
	opacity: 1;
	transform: translateY(0);
}

/* === SACRED DIVIDER === */
.sacred-divider {
	display: flex;
	align-items: center;
	gap: 2rem;
	width: 100%;
	max-width: 350px;
	opacity: 0;
	transition: opacity 0.8s ease;
}

.sacred-divider.visible {
	opacity: 1;
}

.divider-wing {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(147, 51, 234, 0.4) 50%, transparent 100%);
}

.divider-core {
	font-size: 1.2rem;
	color: var(--ether-violet);
	opacity: 0.6;
	animation: core-glow 3s ease-in-out infinite;
}

@keyframes core-glow {

	0%,
	100% {
		opacity: 0.6;
		text-shadow: 0 0 10px rgba(147, 51, 234, 0.3);
		transform: scale(1);
	}

	50% {
		opacity: 0.3;
		text-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
		transform: scale(0.95);
	}
}

/* === VISION SECTION === */
.vision {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	padding: 3.5rem 4rem;
	background:
		linear-gradient(135deg, rgba(147, 51, 234, 0.03) 0%, transparent 50%),
		linear-gradient(225deg, rgba(34, 211, 238, 0.02) 0%, transparent 50%),
		var(--glass-white);
	border: 1px solid var(--glass-border);
	border-radius: 32px;
	backdrop-filter: blur(20px);
	overflow: hidden;
	transition: all 0.6s var(--ease-out-expo);
	opacity: 0;
	transform: translateY(20px);
}

.vision.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Animated border gradient */
.vision::before {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: 32px;
	padding: 1px;
	background: linear-gradient(135deg,
			rgba(147, 51, 234, 0.3) 0%,
			transparent 30%,
			transparent 70%,
			rgba(34, 211, 238, 0.25) 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.vision:hover::before {
	opacity: 1;
}

.vision:hover {
	transform: translateY(-8px);
	box-shadow:
		0 30px 60px -20px rgba(147, 51, 234, 0.15),
		0 0 0 1px rgba(147, 51, 234, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vision-text {
	font-family: var(--font-ui);
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 2;
	color: var(--text-secondary);
	text-align: center;
}

.vision-text strong {
	font-weight: 600;
	color: var(--ether-cyan);
	text-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
}

.vision-cta {
	font-family: var(--font-ui);
	font-size: 0.95rem;
	color: var(--text-tertiary);
	padding-top: 1.5rem;
	border-top: 1px solid var(--glass-border);
	width: 100%;
	text-align: center;
	font-style: italic;
}

/* === CONSTELLATION LINKS === */
.constellation {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.8s var(--ease-out-expo);
}

.constellation.visible {
	opacity: 1;
	transform: translateY(0);
}

.star-link {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	padding: 1.4rem 1.8rem;
	background: var(--glass-white);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	backdrop-filter: blur(12px);
	transition: all 0.5s var(--ease-out-expo);
}

.star-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg,
			transparent 0%,
			rgba(255, 255, 255, 0.1) 50%,
			transparent 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.star-link:hover::before {
	opacity: 1;
}

.star-link:hover {
	transform: translateY(-8px) scale(1.02);
	background: rgba(147, 51, 234, 0.05);
	border-color: rgba(147, 51, 234, 0.2);
	box-shadow:
		0 25px 50px -15px rgba(147, 51, 234, 0.2),
		0 0 0 1px rgba(147, 51, 234, 0.1);
}

.star-glow {
	position: absolute;
	width: 150%;
	height: 150%;
	top: -25%;
	left: -25%;
	background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.star-link:hover .star-glow {
	opacity: 1;
}

.star-icon {
	font-size: 1.6rem;
	z-index: 1;
	transition: transform 0.5s var(--ease-elastic);
}

.star-icon-img {
	width: 1.6rem;
	height: 1.6rem;
	object-fit: contain;
	z-index: 1;
	filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2)) brightness(1.1);
	transition: all 0.5s var(--ease-elastic);
}

.star-link:hover .star-icon,
.star-link:hover .star-icon-img {
	transform: scale(1.2) translateY(-2px);
}

.star-label {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--text-tertiary);
	z-index: 1;
	transition: color 0.4s ease;
}

.star-link:hover .star-label {
	color: var(--text-secondary);
}

.star-line {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg,
			transparent 0%,
			var(--ether-violet) 50%,
			transparent 100%);
	transform: translateX(-50%);
	transition: width 0.5s var(--ease-out-expo);
}

.star-link:hover .star-line {
	width: 60%;
}

/* === FOOTER === */
.closing {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 2rem;
	padding-top: 3rem;
	width: 100%;
	opacity: 0;
	transition: opacity 0.8s ease;
}

.closing.visible {
	opacity: 1;
}

.closing-ornament {
	font-size: 1rem;
	color: var(--ether-violet);
	opacity: 0.4;
	animation: ornament-float 4s ease-in-out infinite;
	text-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
}

.closing-ornament:nth-child(3) {
	animation-delay: 0.5s;
}

@keyframes ornament-float {

	0%,
	100% {
		transform: translateY(0) scale(1);
		opacity: 0.4;
	}

	50% {
		transform: translateY(-3px) scale(1.1);
		opacity: 0.6;
	}
}

.closing-text {
	font-family: var(--font-body);
	font-size: 1.2rem;
	font-style: italic;
	font-weight: 400;
	color: var(--text-tertiary);
	letter-spacing: 0.03em;
}

/* === FADE IN UP ANIMATION === */
.fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 1.2s var(--ease-out-expo),
		transform 1.2s var(--ease-out-expo);
	transition-delay: var(--delay, 0ms);
}

.container.visible .fade-in-up {
	opacity: 1;
	transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
	.wrapper {
		padding: 4rem 1.5rem;
	}

	.container {
		gap: 3rem;
	}

	.typewriter-text {
		font-size: 2.2rem;
	}

	.quote-accent {
		font-size: 5rem;
		top: -2.5rem;
	}

	.verse {
		font-size: 1.25rem;
	}

	.profile-frame {
		width: 160px;
		height: 160px;
	}

	.profile-image {
		width: 145px;
		height: 145px;
	}

	.vision {
		padding: 2.5rem 2rem;
	}

	.constellation {
		gap: 0.75rem;
	}

	.star-link {
		padding: 1.1rem 1.4rem;
	}
}

@media (max-width: 480px) {
	.typewriter-text {
		font-size: 1.8rem;
	}

	.verse {
		font-size: 1.1rem;
	}

	.cursor-spotlight {
		display: none;
	}

	body,
	a {
		cursor: auto;
	}
}